Skip to content

#347 - Add support for Python 3.13 #104

#347 - Add support for Python 3.13

#347 - Add support for Python 3.13 #104

Workflow file for this run

name: cicd
on:
push:
branches:
- main
tags:
- "*"
pull_request:
env:
PYTHON_VERSION: 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_VERSION }
build-docs:
uses: ./.github/workflows/_build-docs.yml
with:
PYTHON_VERSION: ${ env.PYTHON_VERSION }

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

View workflow run for this annotation

GitHub Actions / cicd

Invalid workflow file

The workflow is not valid. .github/workflows/main-cicd.yml (Line: 25, Col: 23): Invalid input, PYTHON_VERSION is not defined in the referenced workflow.

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

View workflow run for this annotation

GitHub Actions / cicd

Invalid workflow file

The workflow is not valid. .github/workflows/main-cicd.yml (Line: 25, Col: 23): Invalid input, PYTHON_VERSION is not defined in the referenced workflow.
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]