Skip to content

Commit

Permalink
Parallelize some tests on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Jul 22, 2024
1 parent 11c9f79 commit 11a4fb1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ jobs:
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true
find $HOME/.sbt -name "*.lock" -delete || true
test-schemas:
runs-on: blacksmith-2vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
- name: Coursier cache
uses: useblacksmith/coursier-cache-action@v6
- uses: coursier/setup-action@v1
with:
jvm: zulu:11.0.10
apps: sbt scala
- uses: actions/setup-node@v4
with:
node-version: '16'
Expand All @@ -59,7 +70,7 @@ jobs:
done
assemble:
needs: test
needs: [test, test-schemas]
runs-on: blacksmith-2vcpu-ubuntu-2204
permissions:
id-token: write
Expand Down

0 comments on commit 11a4fb1

Please sign in to comment.