mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-05 00:05:12 -04:00
34 lines
621 B
YAML
34 lines
621 B
YAML
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
|
|
|
|
platform-tests:
|
|
needs: basic-checks
|
|
uses: ./.github/workflows/platforms.yml
|
|
|
|
code-coverage:
|
|
needs: basic-checks
|
|
uses: ./.github/workflows/code-coverage.yml
|
|
secrets: inherit
|
|
|
|
scorecard:
|
|
needs: basic-checks
|
|
uses: ./.github/workflows/supplychain.yml
|
|
secrets: inherit
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
security-events: write
|