Skip to content

Adding __all__ to submodules #214

Adding __all__ to submodules

Adding __all__ to submodules #214

Workflow file for this run

# This workflow runs tests and reports code coverage.
# We need a workflow name to be able to schedule it from Github UI
name: TestCoverage
on:
# Triggers the workflow on push to main
push:
branches:
- main
# Triggers the workflow on any PR
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# The job ID has to match repo settings for PR required checks
TestCoverage:
runs-on: ubuntu-latest
# Run jobs for a couple of Python versions.
strategy:
matrix:
python: ["3.9", "3.10", "3.11"]
name: TestCoverage - Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
- name: Get orquestra-quantum
uses: actions/checkout@v2
with:
repository: zapatacomputing/orquestra-quantum
path: orquestra-quantum
- uses: ./subtrees/z_quantum_actions/actions/coverage