Skip to content

Add GitHub Actions workflow for pull requests #1

Add GitHub Actions workflow for pull requests

Add GitHub Actions workflow for pull requests #1

Workflow file for this run

name: pr
on: pull_request
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
# TODO: move test dependencies to a separate file
run: |
python -m pip install -e .
python -m pip install pytest mock
- name: Run pytest
run: pytest