File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Check Lesson 13 Pull Request
2+
3+ on :
4+ pull_request :
5+ branches : [ "main" ]
6+ paths :
7+ - " lesson_13/bank/**"
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+ - name : Set up JDK 17
19+ uses : actions/setup-java@v4
20+ with :
21+ java-version : ' 17'
22+ distribution : ' temurin'
23+
24+ # Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
25+ # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
26+ - name : Setup Gradle
27+ uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
28+
29+ - name : Build Lesson 13 with Gradle Wrapper
30+ working-directory : ./lesson_13/bank
31+ run : ./gradlew check
32+
33+
You can’t perform that action at this time.
0 commit comments