Skip to content

Added pre-commit (ruff linter and formatter) and gh action (pytest) #1

Added pre-commit (ruff linter and formatter) and gh action (pytest)

Added pre-commit (ruff linter and formatter) and gh action (pytest) #1

Workflow file for this run

name: Pull Request Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
- name: Install dependencies
run: pip install .[tests]
- name: Run pytest
run: pytest