Skip to content

Commit

Permalink
Fixes #72 - Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated workflow committed Oct 13, 2023
1 parent cb97dae commit 8de4933
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,28 @@ on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java
uses: actions/setup-java@v1
- name: Set up Java 21
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
java-version: 21
- name: Build project
run: mvn -B -ntp install
jms:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java 17
uses: actions/setup-java@v1
- name: Set up Java 21
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
java-version: 21
- name: Build project
run: mvn -B -ntp install
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Set up Java 17
uses: actions/setup-java@v2
- name: Set up Java 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
java-version: 21
- name: Build with Maven
run: mvn -B -DskipTests=true -f pom.xml --ntp install

0 comments on commit 8de4933

Please sign in to comment.