Skip to content

Commit

Permalink
SP-34 Add tests to Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrodie committed Aug 8, 2022
1 parent cd4d53e commit 61a1405
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,19 @@ jobs:
distribution: 'corretto'
- name: Build with Maven
run: mvn compile
test:
runs-on: ubuntu-latest

strategy:
matrix:
java-version: [8, 11, 17]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: 'corretto'
- name: Test with Maven
run: mvn test

0 comments on commit 61a1405

Please sign in to comment.