Skip to content

Commit 85baed6

Browse files
committed
adds testing pipeline
1 parent 1fdeb5a commit 85baed6

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Tests
2+
on:
3+
push:
4+
paths-ignore:
5+
- 'README.md'
6+
- 'CONTRIBUTING.md'
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Set up JDK 17
20+
uses: actions/setup-java@v2
21+
with:
22+
java-version: '17'
23+
distribution: 'adopt'
24+
cache: maven
25+
26+
- name: run maven
27+
run: ./mvnw --batch-mode --update-snapshots verify

0 commit comments

Comments
 (0)