Skip to content

Commit 9346305

Browse files
committed
Fix #19: Implement check-cla & check-lint
1 parent 04524d6 commit 9346305

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

.github/workflows/check-cla.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Check CLA
2+
on: [pull_request]
3+
jobs:
4+
check-cla:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: scala/cla-checker@v1
8+
with:
9+
author: ${{ github.event.pull_request.user.login }}

.github/workflows/check-lint.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Check Lint
2+
on:
3+
pull_request:
4+
jobs:
5+
check-lint:
6+
runs-on: ubuntu-22.04
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: VirtusLab/[email protected]
10+
- run: scala-cli fmt --check
11+

project/build.properties

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
<<<<<<< HEAD
21
sbt.version = 1.11.3
3-
=======
4-
sbt.version = 1.10.11
5-
>>>>>>> e8a1d1c (Update Scala Native, Scala, & sbt to current versions)

0 commit comments

Comments
 (0)