Skip to content

Commit

Permalink
Run CI tests on multiple operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Dec 22, 2024
1 parent c3f690d commit 962084f
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
path: resources/portal
test-clj:
needs: [ setup, build ]
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/setup
Expand All @@ -47,7 +50,10 @@ jobs:
- run: bb -m tasks.test/clj
test-cljs:
needs: [ setup, build ]
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/setup
Expand All @@ -60,7 +66,10 @@ jobs:
- run: bb -m tasks.test/cljs
test-cljr:
needs: [ setup, build ]
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/setup
Expand Down

0 comments on commit 962084f

Please sign in to comment.