Skip to content

Commit 44050f0

Browse files
authored
Merge pull request #278 from scala/fix-ci-and-add-cla
Fix CI and add CLA
2 parents 6e7fd3d + 8385051 commit 44050f0

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
with:
2525
distribution: temurin
2626
java-version: ${{matrix.java}}
27+
- uses: sbt/setup-sbt@v1
2728
- name: Test
2829
run: sbt "setScalaVersion ${{matrix.scala}}" test core/headerCheck package
2930

@@ -49,5 +50,6 @@ jobs:
4950
with:
5051
distribution: temurin
5152
java-version: ${{matrix.java}}
53+
- uses: sbt/setup-sbt@v1
5254
- name: Test
5355
run: sbt "setScalaVersion ${{matrix.scala}}" test core/headerCheck package

.github/workflows/cla.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)