Update dependency gradle from 8.10.2 to 8.11-rc-2 #265
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: "CI" | |
on: | |
push: | |
concurrency: | |
# See https://github.com/TWiStErRob/github-workflows/blob/main/snippets/cancel-pr-ci-on-push.yml | |
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
name: "🦺 Validation" | |
uses: TWiStErRob/github-workflows/.github/workflows/validate.yml@1e06403c5d561d70e40109c2701ea3092ca6ded7 # v3 | |
permissions: | |
contents: read | |
security-events: write | |
actions: read | |
build: | |
name: "🔨 Build & Verify" | |
needs: validate | |
uses: ./.github/workflows/ci-build.yml | |
permissions: | |
contents: read | |
checks: write | |
security-events: write | |
instrumentation: | |
name: "🧪 Instrumentation Tests on" # / API ${{ matrix.api }} will be appended by used workflow. | |
needs: validate | |
uses: ./.github/workflows/ci-instrumentation.yml | |
permissions: | |
contents: read | |
checks: write | |
statuses: write |