This repository was archived by the owner on Apr 10, 2026. It is now read-only.
Merge pull request #73 from Apicurio/dependabot/maven/org.apache.mave… #193
This file contains hidden or 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: Verify Build Workflow | |
| on: | |
| push: | |
| paths-ignore: | |
| - '.github/**' | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - 'README*' | |
| - 'CODE_OF_CONDUCT*' | |
| branches: [main] | |
| pull_request: | |
| paths-ignore: | |
| - '.github/**' | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - 'README*' | |
| - 'CODE_OF_CONDUCT*' | |
| branches: [main] | |
| jobs: | |
| build-verify: | |
| name: Verify Build | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'Apicurio' | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Check Java Version | |
| run: java -version | |
| - name: Set up Maven | |
| uses: stCarolas/setup-maven@v4 | |
| with: | |
| maven-version: '3.6.3' | |
| - name: Check Maven Version | |
| run: mvn --version | |
| - name: Build Project | |
| run: mvn clean install |