Skip to content

Commit 73c3d87

Browse files
authored
Testing GitHub Actions
1 parent 4099c5f commit 73c3d87

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
scala: [2.12.10, 2.13.1, 0.22.0-bin-20200123-9982f0d-NIGHTLY]
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: olafurpg/setup-scala@v5
14+
with:
15+
java-version: [email protected]
16+
- name: Format Check
17+
if: matrix.scala == "2.13.1"
18+
run: sbt ++${{matrix.scala}} fmtCheck
19+
- name: Tests
20+
run: sbt ++${{matrix.scala}} test
21+
- name: Mima
22+
run: sbt ++${{matrix.scala}} mimaReportBinaryIssues

0 commit comments

Comments
 (0)