Skip to content

docs: modularize CONTRIBUTING.md from README.md #3

docs: modularize CONTRIBUTING.md from README.md

docs: modularize CONTRIBUTING.md from README.md #3

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Python
uses: actions/setup-python@v5
with:
cache: pip
python-version: 3
- name: Install dependencies
run: pip install -e .[test]
- name: Run pytest
run: pytest