Skip to content

MNT: adds bureaucracy files #23

MNT: adds bureaucracy files

MNT: adds bureaucracy files #23

Workflow file for this run

name: PyTest
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- "**.py"
jobs:
run_pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- 3.8
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Build Package
run: |
pip install -e .
- name: Test with pytest
run: |
pytest