First wave of examples that pretty much go over basic API usage #38
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
# This pipeline runs unit tests on the QCpy test cases | |
# Using pytest | |
name: unit-tester | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- run: | | |
pytest test |