File tree Expand file tree Collapse file tree 1 file changed +63
-0
lines changed
Expand file tree Collapse file tree 1 file changed +63
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Standalone Test CI
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+
9+ permissions :
10+ contents : read
11+
12+ concurrency :
13+ group : ${{ github.ref }}
14+ cancel-in-progress : true
15+
16+ jobs :
17+ build-linux :
18+ name : on Linux (Java 21)
19+ runs-on : ubuntu-latest
20+ steps :
21+ - name : Checkout repository
22+ uses : actions/checkout@v4
23+
24+ - name : Set up JDK 21
25+ uses : actions/setup-java@v4
26+ with :
27+ java-version : ' 21'
28+ distribution : ' temurin'
29+
30+ - name : Build and Test with Maven
31+ run : mvn clean install
32+
33+ build-windows :
34+ name : on Windows (Java 21)
35+ runs-on : windows-latest
36+ steps :
37+ - name : Checkout repository
38+ uses : actions/checkout@v4
39+
40+ - name : Set up JDK 21
41+ uses : actions/setup-java@v4
42+ with :
43+ java-version : ' 21'
44+ distribution : ' temurin'
45+
46+ - name : Build and Test with Maven
47+ run : mvn clean install
48+
49+ build-macos :
50+ name : on macOS (Java 21)
51+ runs-on : macos-latest
52+ steps :
53+ - name : Checkout repository
54+ uses : actions/checkout@v4
55+
56+ - name : Set up JDK 21
57+ uses : actions/setup-java@v4
58+ with :
59+ java-version : ' 21'
60+ distribution : ' temurin'
61+
62+ - name : Build and Test with Maven
63+ run : mvn clean install
You can’t perform that action at this time.
0 commit comments