Skip to content

Commit

Permalink
[CI] test on java 8, 11 and 17
Browse files Browse the repository at this point in the history
  • Loading branch information
marmoure committed Nov 14, 2023
1 parent 8513b08 commit b0e2001
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build
on: [push, pull_request]

jobs:
assemble:
name: Build and Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
jdk: [8,11,17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
- name: Compile
run: mvn clean compile
- name: Test
run: mvn verify

0 comments on commit b0e2001

Please sign in to comment.