Update sbt-scoverage to 2.2.2 (#313) #510
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: build | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
branches-ignore: | |
- "gh-pages" | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
branches-ignore: | |
- "gh-pages" | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
java: | |
- graalvm@ | |
- [email protected] | |
- [email protected] | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
fail-fast: false | |
steps: | |
- name: Configure git | |
run: "git config --global core.autocrlf false" | |
shell: bash | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 100 | |
- name: Fetch tags | |
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/* | |
- uses: coursier/cache-action@v5 | |
- uses: olafurpg/setup-scala@v12 | |
with: | |
java-version: ${{matrix.java}} | |
- name: Compile, test and check binary compatibility | |
run: "sbt -batch clean +test +mimaReportBinaryIssues" | |
shell: bash | |