Create temp file at start of execution of first op for op_by_op exect… #163
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: On push | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
jobs: | |
pre-commit: | |
uses: ./.github/workflows/pre-commit.yml | |
secrets: inherit | |
spdx: | |
uses: ./.github/workflows/spdx.yml | |
secrets: inherit | |
build: | |
needs: [pre-commit, spdx] | |
uses: ./.github/workflows/run-build.yml | |
secrets: inherit | |
test: | |
needs: build | |
uses: ./.github/workflows/run-tests.yml | |
secrets: inherit |