Skip to content

Merge pull request #23 from quantum-programming/feature/add-examples #37

Merge pull request #23 from quantum-programming/feature/add-examples

Merge pull request #23 from quantum-programming/feature/add-examples #37

Workflow file for this run

name: Run pytest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install pytest
- name: Run pytest
run: PYTHONPATH=./ pytest tests