chore(deps): update quay.io/quarkus/quarkus-distroless-image:2.0 docker digest to 5cead26 #666
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run unit tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pass-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install JDK17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Repository checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Run native integration tests | |
run: | | |
./mvnw -e -B clean verify --fail-at-end -Dnative -Dstart-containers \ | |
-Dquarkus.native.container-build=true -am -Dquarkus.test.integration-test-profile=test |