We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8480e commit 192db28Copy full SHA for 192db28
.github/workflows/pr.yml
@@ -0,0 +1,39 @@
1
+name: pr
2
+
3
+on:
4
+ pull_request:
5
+ paths-ignore:
6
+ - 'doc/**'
7
+ - 'docs/**'
8
+ - '*.md'
9
10
+jobs:
11
+ scala:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ java: [ '11' ]
16
+ scala: [
17
+ { version: '2.12.13' },
18
+ { version: '2.12.12' },
19
+ { version: '2.12.11' },
20
+ { version: '2.12.10' },
21
+ { version: '2.13.4' },
22
+ { version: '2.13.3' },
23
+ { version: '2.13.2' },
24
+ { version: '2.13.1' },
25
+ { version: '2.13.0' }
26
+ ]
27
+ steps:
28
+ - name: checkout the repo
29
+ uses: actions/checkout@v2
30
+ with:
31
+ fetch-depth: 0
32
33
+ - name: Set up JDK
34
+ uses: actions/setup-java@v1
35
36
+ java-version: ${{ matrix.java }}
37
38
+ - name: run tests
39
+ run: sbt ++${{ matrix.scala.version }} test scripted
0 commit comments