#347 - Add support for Python 3.13 #107
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: cicd | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- "*" | ||
pull_request: | ||
env: | ||
PYTHON: 3.13 | ||
jobs: | ||
static-checks: | ||
uses: ./.github/workflows/_static-checks.yml | ||
integration-tests: | ||
uses: ./.github/workflows/_integration-tests.yml | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
build-package: | ||
uses: ./.github/workflows/_build-package.yml | ||
with: | ||
python_version: ${{ env.PYTHON }} | ||
Check failure on line 21 in .github/workflows/main-cicd.yml GitHub Actions / cicdInvalid workflow file
|
||
build-docs: | ||
uses: ./.github/workflows/_build-docs.yml | ||
upload-package: | ||
if: startsWith(github.ref, 'refs/tags/') | ||
uses: ./.github/workflows/_upload-package.yml | ||
needs: [static-checks, integration-tests, build-package, build-docs] | ||
secrets: | ||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | ||
deploy-docs: | ||
uses: ./.github/workflows/_deploy-docs.yml | ||
needs: [upload-package] |