Skip to content

Commit

Permalink
Merge pull request #395 from scalacenter/setup-action
Browse files Browse the repository at this point in the history
switch to coursier/setup-action & use consistent JVM vendor
  • Loading branch information
bjaglin authored Feb 24, 2024
2 parents a28aa9a + b9feabe commit 5c2fe24
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: olafurpg/setup-scala@v14
- uses: coursier/setup-action@v1
with:
java-version: 8
jvm: temurin:8
- run: sbt test scripted
jdk11:
name: JDK11 tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: olafurpg/setup-scala@v14
- uses: coursier/setup-action@v1
with:
java-version: 11
jvm: temurin:11
- run: sbt test scripted
jdk17:
name: JDK17 tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: olafurpg/setup-scala@v14
- uses: coursier/setup-action@v1
with:
java-version: 17
jvm: temurin:17
- run: sbt "test; scripted sbt-scalafix/*"
jdk21:
name: JDK21 tests
Expand All @@ -39,14 +39,14 @@ jobs:
- uses: actions/checkout@v4
- uses: olafurpg/setup-scala@v14
with:
java-version: 21
jvm: temurin:17
- run: sbt "test; scripted sbt-scalafix/*"
windows:
name: Windows tests
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: olafurpg/setup-scala@v14
- uses: coursier/setup-action@v1
- run: sbt ci-windows
shell: bash
checks:
Expand Down

0 comments on commit 5c2fe24

Please sign in to comment.