Merge pull request #289 from AxonFramework/fix/missing-class-renderers #409
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Test plugin | |
uses: gradle/[email protected] | |
with: | |
arguments: test | |
- name: Verify plugin | |
uses: gradle/[email protected] | |
with: | |
arguments: verifyPlugin | |
concurrency: | |
group: ${{github.workflow}}-${{github.head_ref || github.run_id }} | |
cancel-in-progress: true |