Refactor liboqs CI and update Ubuntu images #3
Workflow file for this run
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 | ||
# read-all permissions are required for the scorecard job | ||
permissions: read-all | ||
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 | ||
scorecard: | ||
Check failure on line 21 in .github/workflows/pr.yml GitHub Actions / Pull request testsInvalid workflow file
|
||
needs: basic-checks | ||
uses: ./.github/workflows/scorecard.yml | ||
secrets: inherit | ||
permissions: | ||
# Needed to upload the results to code-scanning dashboard. | ||
security-events: write | ||
# Needed to publish results and get a badge (see publish_results below). | ||
id-token: write |