We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fff516 commit 2f7edd9Copy full SHA for 2f7edd9
.github/workflows/check_lesson_15_java_pr.yaml
@@ -0,0 +1,27 @@
1
+name: Check Lesson 15 Java Pull Request
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
+ paths:
7
+ - "lesson_15/tdd/**"
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: read
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Set up JDK 17
20
+ uses: actions/setup-java@v4
21
+ with:
22
+ java-version: '17'
23
+ distribution: 'temurin'
24
25
+ - name: Build Lesson 15 with Java
26
+ working-directory: ./lesson_15/tdd
27
+ run: ./gradlew check
0 commit comments