Skip to content

Commit

Permalink
Build with Java8 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
egli committed Mar 6, 2024
1 parent baad1ce commit bc37e91
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,20 @@ on:

jobs:
build:

name: Build with maven
runs-on: ubuntu-latest
strategy:
matrix:
version: [8, 17]

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get update -qq && sudo apt-get install -y libhyphen0 hyphen-de
- name: Set up JDK 17
- name: Set up JDK ${{ matrix.version }}
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: ${{ matrix.version }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
Expand Down

0 comments on commit bc37e91

Please sign in to comment.