Skip to content

Commit 192db28

Browse files
author
Devon Stewart
committed
Adding PR workflow
1 parent fb8480e commit 192db28

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/pr.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
36+
java-version: ${{ matrix.java }}
37+
38+
- name: run tests
39+
run: sbt ++${{ matrix.scala.version }} test scripted

0 commit comments

Comments
 (0)