Skip to content

Merge pull request #346 from Umar-Azam/patch-1 #479

Merge pull request #346 from Umar-Azam/patch-1

Merge pull request #346 from Umar-Azam/patch-1 #479

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Workflow:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Select the Python versions to test against
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12"]
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
steps:
- name: Clone the reference repository
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e '.[test]'
- name: Run tests
run: pytest --cov=./