pc - update version in pom.xml #62
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: "11-backend-integration: Java Integration tests" | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: [src/**, pom.xml, lombok.config] | |
push: | |
branches: [ main ] | |
paths: [src/**, pom.xml, lombok.config] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java (version from .java-version file) | |
uses: actions/setup-java@v3 | |
with: | |
distribution: semeru # See: https://github.com/actions/setup-java#supported-distributions | |
java-version-file: ./.java-version | |
- name: Run IT tests with maven | |
run: INTEGRATION=true mvn -B test-compile failsafe:integration-test failsafe:verify | |