Skip to content

Commit a81e569

Browse files
committed
Regenerate GitHub Actions workflow
Executed command: sbt githubWorkflowGenerate
1 parent b47a20d commit a81e569

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Build and Test
2323
strategy:
2424
matrix:
25-
os: [ubuntu-20.04]
25+
os: [ubuntu-latest]
2626
scala: [2.11.12, 2.12.20, 2.13.15, 3.3.4]
2727
java: [zulu@8]
2828
runs-on: ${{ matrix.os }}
@@ -40,6 +40,12 @@ jobs:
4040
java-version: 8
4141
cache: sbt
4242

43+
- name: Setup sbt
44+
uses: sbt/setup-sbt@v1
45+
46+
- name: Check that workflows are up to date
47+
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
48+
4349
- name: Scala 2.13 build
4450
if: startsWith(matrix.scala, '2.13')
4551
run: sbt '++ ${{ matrix.scala }}' coverage test coverageReport
@@ -81,6 +87,9 @@ jobs:
8187
java-version: 8
8288
cache: sbt
8389

90+
- name: Setup sbt
91+
uses: sbt/setup-sbt@v1
92+
8493
- name: Download target directories (2.11.12)
8594
uses: actions/download-artifact@v4
8695
with:

0 commit comments

Comments
 (0)