Skip to content

Commit 64feb18

Browse files
authored
Fix missing sbt in newer GitHub actions
1 parent 0aee0ff commit 64feb18

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/scala.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
16
name: Scala CI
27

38
on:
49
push:
5-
branches: [ master ]
10+
branches: [ "master" ]
611
pull_request:
7-
branches: [ master ]
12+
branches: [ "master" ]
813

914
permissions:
1015
contents: read
@@ -15,13 +20,14 @@ jobs:
1520
runs-on: ubuntu-latest
1621

1722
steps:
18-
- uses: actions/checkout@v3
23+
24+
- uses: actions/checkout@v4
1925
- name: Set up JDK 11
20-
uses: actions/setup-java@v3
26+
uses: actions/setup-java@v4
2127
with:
2228
java-version: '11'
2329
distribution: 'temurin'
30+
- name: Setup sbt
31+
uses: sbt/setup-sbt@v1
2432
- name: Run tests
2533
run: sbt test
26-
- name: Generate verilog
27-
run: sbt run

0 commit comments

Comments
 (0)