Merge pull request #1739 from smallrye/dependabot/maven/org.codehaus.… #876
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: Main branch continuous integration | |
on: | |
push: | |
branches: | |
- "main" | |
concurrency: | |
group: "ci-${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Test the main branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: maven | |
- name: Run the tests | |
run: ./mvnw --no-transfer-progress -s .build/maven-ci-settings.xml -B clean verify |