We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 804fe24 commit 4666900Copy full SHA for 4666900
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ scalaversion: ["2.11.12", "2.12.11", "2.13.2"]
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - uses: olafurpg/setup-scala@v10
19
+ with:
20
+ java-version: "adopt@1.8"
21
+ - uses: coursier/cache-action@v5
22
+ - name: Build
23
+ run: sbt "++${{ matrix.scalaversion }}" publishLocal
24
+ - name: MiMa
25
+ run: sbt "++${{ matrix.scalaversion }}" mimaReportBinaryIssues
26
+ - name: Header check
27
+ run: sbt "++${{ matrix.scalaversion }}" headerCheck
.travis.yml
0 commit comments