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.
2 parents 6e7fd3d + 8385051 commit 44050f0Copy full SHA for 44050f0
.github/workflows/ci.yml
@@ -24,6 +24,7 @@ jobs:
24
with:
25
distribution: temurin
26
java-version: ${{matrix.java}}
27
+ - uses: sbt/setup-sbt@v1
28
- name: Test
29
run: sbt "setScalaVersion ${{matrix.scala}}" test core/headerCheck package
30
@@ -49,5 +50,6 @@ jobs:
49
50
51
52
53
54
55
.github/workflows/cla.yml
@@ -0,0 +1,11 @@
1
+name: "Check Scala CLA"
2
+on:
3
+ pull_request:
4
+jobs:
5
+ cla-check:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Verify CLA
9
+ uses: scala/cla-checker@v1
10
+ with:
11
+ author: ${{ github.event.pull_request.user.login }}
0 commit comments