Skip to content

Commit 12791b2

Browse files
committed
Add CI test configuration for Scala 2.11
1 parent b853b9f commit 12791b2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build Pull Requests
22
on:
33
push:
4-
branches: [ main ]
4+
branches: [ main, 0.1.x ]
55
pull_request:
66
type: [ synchronize ]
77

@@ -26,6 +26,11 @@ jobs:
2626
with:
2727
java-version: 11
2828
- name: "2.13 Test"
29+
if: github.ref == 'refs/heads/main'
2930
run: sbt "++ 2.13.4 test"
3031
- name: "2.12 Test"
32+
if: github.ref == 'refs/heads/main'
3133
run: sbt "++ 2.12.12 test"
34+
- name: "2.11 Test"
35+
if: github.ref == 'refs/heads/0.1.x'
36+
run: sbt "++ 2.11.12 test"

0 commit comments

Comments
 (0)