Skip to content

#514 - Add python 3.14 support #376

#514 - Add python 3.14 support

#514 - Add python 3.14 support #376

Workflow file for this run

name: cicd
on:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
static-checks:
uses: ./.github/workflows/_static-checks.yml

Check failure on line 11 in .github/workflows/main-cicd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main-cicd.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main-cicd.yml" -> "./.github/workflows/_static-checks.yml" : You have an error in your yaml syntax on line 37
integration-tests:
uses: ./.github/workflows/_integration-tests.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build-package:
uses: ./.github/workflows/_build-package.yml
build-docs:
uses: ./.github/workflows/_build-docs.yml
check-release-notes:
uses: ./.github/workflows/_check-release-notes.yml
deploy-docs:
if: startsWith(github.ref, 'refs/heads/main')
uses: ./.github/workflows/_deploy-docs.yml
needs: [build-docs, build-package, integration-tests, static-checks]
upload-package:
if: startsWith(github.ref, 'refs/tags/')
uses: ./.github/workflows/_upload-package.yml
needs: [build-docs, build-package, integration-tests, static-checks]
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}