Skip to content

Commit ef84d01

Browse files
authored
Fix #19: Implement check-cla & check-lint (#111)
* Sync local copy with central repository * Fix #19: Implement check-cla & check-lint
1 parent 33c5ad0 commit ef84d01

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
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+

0 commit comments

Comments
 (0)