Skip to content

Commit

Permalink
Add windows tests to matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen committed Jan 24, 2024
1 parent 605497a commit 4533a5b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,20 @@ on:
jobs:
tests:
name: Test BoxLang
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
jdkVersion: [ "17" ]
experimental: [ false ]
os: ["ubuntu-latest", "windows-latest"]
jdkVersion: ["17"]
experimental: [false]
include:
- jdkVersion: "17"
os: "ubuntu-latest"
experimental: true
- jdkVersion: "21"
os: "ubuntu-latest"
experimental: true
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 4533a5b

Please sign in to comment.