Skip to content

Commit

Permalink
try matrix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesward committed Nov 8, 2023
1 parent 57a019a commit 34236d5
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8
cache: maven
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8
cache: maven

- run: mvn test
- run: mvn test

0 comments on commit 34236d5

Please sign in to comment.