Skip to content

Commit

Permalink
Separates build from integration test and updates actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tjuerge committed Mar 18, 2024
1 parent 5a67361 commit 6e6fe13
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Maven build
run: mvn -B clean verify
- name: Build
run: mvn -B clean package --file pom.xml
- name: Integration test
run: mvn -B failsafe:integration-test failsafe:verify --file pom.xml

0 comments on commit 6e6fe13

Please sign in to comment.