Summary
Jobs
code-quality
python-tests
wheel-tests
wheel-tests (ubuntu-latest, 3.9, ~=11.0)
wheel-tests (ubuntu-latest, 3.9, ~=12.0)
wheel-tests (ubuntu-latest, 3.10, ~=11.0)
wheel-tests (ubuntu-latest, 3.10, ~=12.0)
wheel-tests (ubuntu-latest, 3.11, ~=11.0)
wheel-tests (ubuntu-latest, 3.11, ~=12.0)
wheel-tests (ubuntu-latest, 3.12, ~=11.0)
wheel-tests (ubuntu-latest, 3.12, ~=12.0)
wheel-tests (windows-latest, 3.9, ~=11.0)
wheel-tests (windows-latest, 3.9, ~=12.0)
wheel-tests (windows-latest, 3.10, ~=11.0)
wheel-tests (windows-latest, 3.10, ~=12.0)
wheel-tests (windows-latest, 3.11, ~=11.0)
wheel-tests (windows-latest, 3.11, ~=12.0)
wheel-tests (windows-latest, 3.12, ~=11.0)
wheel-tests (windows-latest, 3.12, ~=12.0)
wheel-tests (macos-latest, 3.9, ~=11.0)
wheel-tests (macos-latest, 3.9, ~=12.0)
wheel-tests (macos-latest, 3.10, ~=11.0)
wheel-tests (macos-latest, 3.10, ~=12.0)
wheel-tests (macos-latest, 3.11, ~=11.0)
wheel-tests (macos-latest, 3.11, ~=12.0)
wheel-tests (macos-latest, 3.12, ~=11.0)
wheel-tests (macos-latest, 3.12, ~=12.0)
doc-tests
doc-build
publish-pypi
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
# Release workflow. Run basic QA, build and test the universal wheel
# on many platforms, then publish to pypi
name: Release
on:
push:
tags:
- v*
jobs:
code-quality:
uses: ./.github/workflows/code-quality.yml
python-tests:
uses: ./.github/workflows/python-tests.yml
needs: [code-quality]
wheel-tests:
uses: ./.github/workflows/wheel-tests.yml
needs: [python-tests]
doc-tests:
uses: ./.github/workflows/doc-tests.yml
needs: [python-tests]
doc-build:
uses: ./.github/workflows/doc-build.yml
needs: [python-tests]
publish-pypi:
uses: ./.github/workflows/publish-pypi.yml
needs: [code-quality,python-tests,wheel-tests,doc-tests]
secrets: inherit
You can’t perform that action at this time.