Skip to content

Commit

Permalink
ci: Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored Nov 8, 2024
1 parent e8cd893 commit c0a383c
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
@@ -1,12 +1,8 @@
name: Scala CI
name: CI

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
Expand All @@ -15,12 +11,16 @@ jobs:
matrix:
java: [ '8', '11', '15' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: "zulu"
cache: sbt
- name: Setup sbt
uses: sbt/setup-sbt@v1
- name: print Java version
run: java -version
- name: Run tests
run: sbt scripted
run: sbt -v scripted

0 comments on commit c0a383c

Please sign in to comment.