Skip to content

add wiki folder

add wiki folder #419

Workflow file for this run

name: Lint and Test
on: [push, pull_request, workflow_dispatch]
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- run: |
pip install -r requirements.txt
pip install .
- name: Lint
run: pre-commit run --all-files
- name: Test
run: pytest