Skip to content

Merge pull request #10 from taladjidi/main #205

Merge pull request #10 from taladjidi/main

Merge pull request #10 from taladjidi/main #205

Workflow file for this run

on: [push]
jobs:
tests:
runs-on: ubuntu-lastest
name: Run tests
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install .
- name: Test with pytest
run: |
pip install pytest
pytest tests