We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f246f2b commit a2704b0Copy full SHA for a2704b0
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,22 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "**"
7
+ tags-ignore:
8
+ - '**'
9
10
+jobs:
11
12
+ jdk_8_maven:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Setup JDK
17
+ uses: actions/setup-java@v1
18
+ with:
19
+ java-version: 1.8
20
+ - name: Build with Maven
21
+ run: mvn clean verify --fae
22
+ working-directory: jdk_8_maven
0 commit comments