Skip to content

update CI for docs and tests #1

update CI for docs and tests

update CI for docs and tests #1

Workflow file for this run

name: Run Tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: python -m pip install .[docs,test]
- name: Run tests
run: pytest