Fix version distance policy being evaluated despite not being configured #1069
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: Tests CI | |
on: | |
push: | |
branches: | |
- 'main' # Main branch | |
- '[0-9]+.[0-9]+.x' # Release branches | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
pull_request: | |
branches: | |
- 'main' # Main branch | |
- '[0-9]+.[0-9]+.x' # Release branches | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
workflow_dispatch: | |
# The following concurrency group cancels in-progress jobs or runs on pull_request events only; | |
# if github.head_ref is undefined, the concurrency group will fallback to the run ID, | |
# which is guaranteed to be both unique and defined for the run. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Execute unit tests | |
run: |- | |
mvn clean | |
mvn test -P enhance |