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 b853b9f commit 12791b2Copy full SHA for 12791b2
.github/workflows/test.yml
@@ -1,7 +1,7 @@
1
name: Build Pull Requests
2
on:
3
push:
4
- branches: [ main ]
+ branches: [ main, 0.1.x ]
5
pull_request:
6
type: [ synchronize ]
7
@@ -26,6 +26,11 @@ jobs:
26
with:
27
java-version: 11
28
- name: "2.13 Test"
29
+ if: github.ref == 'refs/heads/main'
30
run: sbt "++ 2.13.4 test"
31
- name: "2.12 Test"
32
33
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