Skip to content

Commit 8630985

Browse files
Add GH workflow; JDK 11 (#11)
1 parent 2668255 commit 8630985

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/mvn-verify.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: mvn-verify
2+
on: [push, pull_request]
3+
4+
jobs:
5+
mvn-verify:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- name: Set up JDK 11
10+
uses: actions/setup-java@v4
11+
with:
12+
java-version: '11'
13+
distribution: 'temurin'
14+
cache: maven
15+
- name: Install yaz, swig
16+
run: sudo apt-get install libyaz-dev swig -y
17+
- name: Run the Maven verify phase
18+
run: mvn --batch-mode verify

0 commit comments

Comments
 (0)