Allow build-time tests to be run in environments where bwrap can't work #222
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: CI | |
on: [push, pull_request] | |
jobs: | |
build-container: | |
name: Container | |
uses: ./.github/workflows/container.yml | |
permissions: | |
packages: write | |
build-and-test: | |
name: Build and Test | |
uses: ./.github/workflows/build-and-test.yml | |
needs: build-container | |
with: | |
image: ${{ needs.build-container.outputs.image }} | |
image_options: ${{ needs.build-container.outputs.image_options }} | |
pages: | |
name: Documentation & Website | |
uses: ./.github/workflows/pages.yml | |
needs: build-container | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
with: | |
image: ${{ needs.build-container.outputs.image }} | |
image_options: ${{ needs.build-container.outputs.image_options }} |