Skip to content

Add macOS CI and initial tests #1

Add macOS CI and initial tests

Add macOS CI and initial tests #1

Workflow file for this run

name: macOS Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install .
- name: Lint
run: |
ruff check .
black --check .
- name: Test
run: pytest -q