Split async work into separate thread pools #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Setup | |
uses: coursier/setup-action@v1 | |
with: | |
jvm: "adoptium:1.17" | |
- name: Build | |
run: sbt coverage "Test / compile" | |
shell: bash | |
- name: Run tests | |
run: sbt coverage test | |
shell: bash | |
- name: Coveralls | |
run: sbt coverageAggregate coveralls | |
shell: bash | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} |