Skip to content

Commit 0e06bab

Browse files
authored
Merge pull request #129 from eed3si9n/wip/actions
GitHub Actions update
2 parents 95f9234 + 6649d2b commit 0e06bab

File tree

3 files changed

+6
-22
lines changed

3 files changed

+6
-22
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: coursier/cache-action@v6
1514
- uses: actions/setup-java@v4
1615
with:
1716
distribution: temurin
1817
java-version: 8
18+
cache: sbt
19+
- uses: sbt/setup-sbt@v1
1920
- name: Test
2021
# This runs the template with the default parameters, and runs test within the templated app.
2122
run: sbt -Dfile.encoding=UTF8 test

.github/workflows/cla.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
check:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
8-
- run: ./project/scripts/check-cla.sh
9-
env:
10-
AUTHOR: ${{ github.event.pull_request.user.login }}
7+
- name: Check CLA
8+
uses: scala/cla-checker@v1
9+
with:
10+
author: ${{ github.event.pull_request.user.login }}

project/scripts/check-cla.sh

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)