Skip to content

Commit

Permalink
Add jdk17 build
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenamar-db committed Dec 12, 2024
1 parent a5c3bc2 commit fd31bc8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['11', '17']
env:
# Set LANG=C to simulate least-common-denominator target deployment environments:
LANG: C

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Run mill tests
run: ./mill __.test
- name: Compile with sbt
Expand Down

0 comments on commit fd31bc8

Please sign in to comment.