Skip to content

Commit

Permalink
build with both java 8 and 11
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-asplund committed Dec 17, 2023
1 parent 526971f commit 209e796
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,23 @@ on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 8
- os: ubuntu-latest
java: 17
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt
- name: Build and Test
run: sbt -v +test
java-version: ${{ matrix.java }}
- name: Build and test
shell: bash
run: sbt -v +test

0 comments on commit 209e796

Please sign in to comment.