Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fhackett committed Oct 28, 2024
1 parent 63f0ffe commit 57bb694
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ['11', '16']
golang-version: ['1.18', '1.20']
java-version: ['11', '21']
golang-version: ['1.18', '1.23']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- name: Setup Go environment
uses: actions/setup-go@v2.1.3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.golang-version }}
- name: Run tests
run: sbt "testOnly -- -l org.scalatest.tags.Slow"
- name: 'Upload Fuzz Test Results on Test Failure (in case there are some)'
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: fuzz-test-results
path: fuzz_output/*

0 comments on commit 57bb694

Please sign in to comment.