This repository was archived by the owner on Sep 18, 2025. It is now read-only.
Add "Apply scalafmt formatting" to git-blame-ignore-revs #405
This file contains hidden or 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: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| scala: | |
| - 2.13.15 | |
| - 2.12.20 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: coursier/cache-action@v5 | |
| - name: scala | |
| uses: olafurpg/setup-scala@v10 | |
| with: | |
| java-version: openjdk@1.11 | |
| - name: build ${{ matrix.scala }} | |
| run: sbt ++${{ matrix.scala }} clean coverage test | |
| - name: test coverage | |
| if: success() | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
| run: sbt ++${{ matrix.scala }} coverageReport coverageAggregate coveralls | |
| - name: slack | |
| uses: homoluctus/slatify@master | |
| if: failure() && github.ref == 'refs/heads/master' | |
| with: | |
| type: ${{ job.status }} | |
| job_name: Build | |
| url: ${{ secrets.SLACK_WEBHOOK }} |