Update sbt-sonatype to 3.12.0 (#548) #956
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: | |
- '**.md' | |
branches-ignore: | |
- "gh-pages" | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
branches-ignore: | |
- "gh-pages" | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
java: | |
- zulu@1.17 | |
- graalvm-ce-java11@21 | |
- zulu@1.8 | |
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: 300 | |
- name: Fetch tags | |
run: git fetch --depth=300 origin +refs/tags/*:refs/tags/* | |
- uses: coursier/cache-action@v6.3 | |
- uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: ${{matrix.java}} | |
- name: Compile, test and check binary compatibility | |
run: "sbt -batch clean +test +mimaReportBinaryIssues" | |
shell: bash |