Bump pl.allegro.tech.build.axion-release from 1.21.1 to 1.21.2 #1467
Workflow file for this run
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: Build | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| gradle-version: ["7.6", "8.0", "8.3", "8.4", "8.5", "8.6", "8.7", "8.8", "8.9", "8.10", "8.11", "8.12", "8.13", "current"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| with: | |
| dependency-graph: ${{(github.event.repository != null && github.ref_name == github.event.repository.default_branch && matrix.gradle-version == 'current') && 'generate-and-submit' || 'disabled' }} | |
| gradle-version: ${{ matrix.gradle-version }} | |
| - name: Test with Gradle | |
| run: gradle build | |
| - name: Jacoco | |
| if: ${{ matrix.gradle-version == 'current' }} | |
| run: gradle jacocoTestReport | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v6 | |
| if: ${{ matrix.gradle-version == 'current' }} | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |