Skip to content

Merge branch 'main' into v0.1.1 #155

Merge branch 'main' into v0.1.1

Merge branch 'main' into v0.1.1 #155

Workflow file for this run

name: Pytest
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
test:
name: Run Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Run Pytest
run: pytest tests/