Skip to content

first pass of ci pipelines #1

first pass of ci pipelines

first pass of ci pipelines #1

Workflow file for this run

name: Main
on:
push:
branches: [ "main" ]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: read
actions: read
id-token: write
pages: write
security-events: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
uses: ./.github/workflows/checks.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
build-wheels:
uses: ./.github/workflows/build-wheels.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
build-docs:
uses: ./.github/workflows/build-docs.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
codeql:
uses: ./.github/workflows/codeql.yaml
secrets: inherit
with:
sha: ${{ github.sha }}

Check failure on line 36 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / Main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yaml (Line: 36, Col: 12): Invalid input, sha is not defined in the referenced workflow.
release:
uses: ./.github/workflows/release.yaml
secrets: inherit
needs:
- build-docs
- build-wheels
- checks
- codeql
with:
sha: ${{ github.sha }}
publish-docs: true