Skip to content

Run pytest with github actions #3

Run pytest with github actions

Run pytest with github actions #3

Workflow file for this run

name: Pytest's test suite
on:
push:
branches:
- master
pull_request:
env:
PYTHON_VERSION: 3.9.18
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- run: pip install -r requirements.txt
- run: pytest .