Skip to content

#347 - Add support for Python 3.13 #111

#347 - Add support for Python 3.13

#347 - Add support for Python 3.13 #111

Workflow file for this run

name: cicd
on:
push:
branches:
- main
tags:
- "*"
pull_request:
env:
PYTHON: 3.13
jobs:
variables:
uses: ./.github/workflows/_variables.yml
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
needs: [variables]
with:
python_version: ${{ needs.variables.python_version }}
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]