Skip to content

wip

wip #8

Workflow file for this run

name: Tests
on: [push]
jobs:
test-and-lint:
strategy:
matrix:
os: [ ubuntu-22.04 ]
python-version: [ "3.10" ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run pytest
run: |
python -m pytest tests/