Skip to content

Update GitHub Actions dependencies/workflows #19

Update GitHub Actions dependencies/workflows

Update GitHub Actions dependencies/workflows #19

Workflow file for this run

name: PR Checks
on: pull_request
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install -e .
python -m pip install pytest
- name: Run pytest
run: pytest