Skip to content

Merge pull request #3 from netz39/fix/readme-formatting #7

Merge pull request #3 from netz39/fix/readme-formatting

Merge pull request #3 from netz39/fix/readme-formatting #7

Workflow file for this run

name: PyTest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests with pytest
run: pytest --verbose