Skip to content

Commit

Permalink
Enable M1 runner (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrdom authored Feb 19, 2024
1 parent a4d073b commit 667547b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
id: coursier-cache
- uses: coursier/setup-action@v1
with:
jvm: temurin:11
apps: sbt
- uses: actions/setup-node@v4
with:
node-version: 18
Expand All @@ -32,4 +34,4 @@ jobs:
- name: Run tests
uses: coactions/setup-xvfb@v1
with:
run: sbt scalafmtSbtCheck scalafmtCheckAll test scriptedSequentialPerModule
run: sbt scalafmtSbtCheck scalafmtCheckAll test ${{ steps.coursier-cache.outputs.cache-hit-coursier && 'scripted' || 'scriptedSequentialPerModule' }}

0 comments on commit 667547b

Please sign in to comment.