File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed
Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ "*" ]
6+ # pull_request:
7+ # branches: [ "*" ]
8+
9+ jobs :
10+ check :
11+
12+ strategy :
13+ matrix :
14+ os : [ ubuntu-latest, macos-latest, windows-latest ]
15+ runs-on : ${{ matrix.os }}
16+ permissions :
17+ contents : read
18+
19+ steps :
20+ - uses : actions/checkout@v4
21+ - name : Set up JDK 8
22+ uses : actions/setup-java@v4
23+ with :
24+ java-version : ' 8'
25+ distribution : ' zulu'
26+ - name : Set up JDK 17
27+ uses : actions/setup-java@v4
28+ with :
29+ java-version : ' 17'
30+ distribution : ' temurin'
31+
32+ - name : Setup Gradle
33+ uses : gradle/actions/setup-gradle@v4
34+
35+ - name : Check with Gradle Wrapper
36+ run : ./gradlew check
37+
38+ dependency-submission :
39+
40+ strategy :
41+ matrix :
42+ os : [ ubuntu-latest, macos-latest, windows-latest ]
43+ runs-on : ${{ matrix.os }}
44+ permissions :
45+ contents : write
46+
47+ steps :
48+ - uses : actions/checkout@v4
49+ - name : Set up JDK 17
50+ uses : actions/setup-java@v4
51+ with :
52+ java-version : ' 17'
53+ distribution : ' temurin'
54+
55+ - name : Generate and submit dependency graph
56+ uses : gradle/actions/dependency-submission@v4
You can’t perform that action at this time.
0 commit comments