Skip to content

Use action to install asdf #226

Use action to install asdf

Use action to install asdf #226

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Project Validation
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
name: "Build"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
- name: Execute Gradle build
uses: gradle/gradle-build-action@v2
with:
cache-read-only: false
arguments: jar instrumentTest --console plain
codeql:
needs: build
name: CodeQL
uses: ./.github/workflows/_codeql.yml
secrets: inherit
qodana:
needs: build
name: Qodana
uses: ./.github/workflows/_qodana.yml
secrets: inherit
plugins:
needs: build
name: Plugins
uses: ./.github/workflows/_build_plugins.yml
secrets: inherit
tests:
needs: build
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
name: Tests
uses: ./.github/workflows/_tests.yml
with:
os: ${{ matrix.os }}
secrets: inherit
tests-aggregator:
needs: tests
if: ${{ success() }}
runs-on: ubuntu-latest
name: Tests Results Aggregator
outputs:
success: ${{ steps.aggregate.outputs.success }}
steps:
- id: aggregate
name: Aggregate results
run: echo "success=true" >> $GITHUB_OUTPUT
all-tests:
needs: [ tests, tests-aggregator ]
if: ${{ always() }}
runs-on: ubuntu-latest
name: All tests
steps:
- name: Done
run: |
echo Success flag: ${{ needs.tests-aggregator.outputs.success }}
if [[ "${{ needs.tests-aggregator.outputs.success }}" == "true" ]]; then
echo "Tests passed"
exit 0
else
echo "Tests failed"
exit 1
fi
coverage:
needs: tests
name: Coverage
uses: ./.github/workflows/_coverage.yml
secrets: inherit