Skip to content

Commit 09ea2d9

Browse files
Adds ci.yaml (#40)
1 parent 1dfe145 commit 09ea2d9

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on: [ push ]
4+
5+
jobs:
6+
upload:
7+
name: CI
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Cache Local Maven Repository
14+
uses: actions/cache@v4
15+
with:
16+
path: ~/.m2/repository
17+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
18+
19+
- name: Setup Java
20+
uses: actions/setup-java@v4
21+
with:
22+
java-version: 11
23+
distribution: 'adopt'
24+
25+
- name: Run CI
26+
run: mvn --batch-mode clean verify

0 commit comments

Comments
 (0)