Skip to content

#347 - Add support for Python 3.13 #107

#347 - Add support for Python 3.13

#347 - Add support for Python 3.13 #107

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / cicd

Invalid workflow file

The workflow is not valid. .github/workflows/main-cicd.yml (Line: 21, Col: 23): Unrecognized named-value: 'env'. Located at position 1 within expression: env.PYTHON
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]