Check workflows for issues during CI #12
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: Pull request tests | ||
permissions: | ||
contents: read | ||
on: pull_request | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
basic-checks: | ||
uses: ./.github/workflows/basic.yml | ||
Check failure on line 15 in .github/workflows/pr.yml GitHub Actions / .github/workflows/pr.ymlInvalid workflow file
|
||
platform-tests: | ||
needs: basic-checks | ||
uses: ./.github/workflows/platforms.yml | ||
scorecard: | ||
needs: basic-checks | ||
uses: ./.github/workflows/scorecard.yml | ||
secrets: inherit | ||
# complete list of permissions keys as per | ||
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/controlling-permissions-for-github_token#defining-access-for-the-github_token-permissions | ||
# accessed September 4, 2024 | ||
permissions: | ||
actions: read | ||
attestations: read | ||
checks: read | ||
contents: read | ||
deployments: read | ||
id-token: write | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
pull-requests: read | ||
repository-projects: read | ||
security-events: write | ||
statuses: read |