Skip to content

Commit

Permalink
Add CI test configuration for Scala 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhoon committed Dec 26, 2020
1 parent b853b9f commit 12791b2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build Pull Requests
on:
push:
branches: [ main ]
branches: [ main, 0.1.x ]
pull_request:
type: [ synchronize ]

Expand All @@ -26,6 +26,11 @@ jobs:
with:
java-version: 11
- name: "2.13 Test"
if: github.ref == 'refs/heads/main'
run: sbt "++ 2.13.4 test"
- name: "2.12 Test"
if: github.ref == 'refs/heads/main'
run: sbt "++ 2.12.12 test"
- name: "2.11 Test"
if: github.ref == 'refs/heads/0.1.x'
run: sbt "++ 2.11.12 test"

0 comments on commit 12791b2

Please sign in to comment.