Skip to content

github: workflow: Use reusable workflow for all CI jobs #4

github: workflow: Use reusable workflow for all CI jobs

github: workflow: Use reusable workflow for all CI jobs #4

name: Build and Publish
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
sanity-check:
uses: ./.github/workflows/ci-tests.yaml

Check failure on line 12 in .github/workflows/build-and-publish.yaml

View workflow run for this annotation

GitHub Actions / Build and Publish

Invalid workflow file

The workflow is not valid. In .github/workflows/build-and-publish.yaml (Line: 12, Col: 11): Error from called workflow torizon/vscode-torizon-templates/.github/workflows/ci-tests.yaml@aa84673a3310554e0fbff478897391261cefbe0a (Line: 4, Col: 14): Unexpected value 'inherit'
build-ccpp:
uses: ./.github/workflows/build-ccpp.yaml
needs: sanity-check
build-debug-ccpp:
uses: ./.github/workflows/build-debug-ccpp.yaml
needs: sanity-check
build-debug-python:
uses: ./.github/workflows/build-debug-python.yaml
needs: sanity-check
build-python:
uses: ./.github/workflows/build-python.yaml
needs: sanity-check
build-debug-rust:
uses: ./.github/workflows/build-debug-rust.yaml
needs: sanity-check
build-rust:
uses: ./.github/workflows/build-rust.yaml
needs: sanity-check
publish-torizon-utils:
uses: ./.github/workflows/publish-torizon-utils.yaml
needs:
- build-ccpp
- build-debug-ccpp
- build-debug-python
- build-python
- build-debug-rust
- build-rust