Skip to content

remove non-working python-3.8 test #7

remove non-working python-3.8 test

remove non-working python-3.8 test #7

Workflow file for this run

# Release workflow. Run basic QA, build the universal wheel and test it on many
# platforms, then publish to pypi
name: Release
on:
push:
tags:
- v*
jobs:
unit-tests:
uses: ./.github/workflows/unit-tests.yml
test-wheels:
# test-wheels triggers building of artifacts
uses: ./.github/workflows/test-wheels.yml
needs: [unit-tests]
publish-pypi:
uses: ./.github/workflows/publish-pypi.yml
needs: [test-wheels]
secrets: inherit