Skip to content

Starting to add many unit tests #33

Starting to add many unit tests

Starting to add many unit tests #33

Workflow file for this run

name: Lint
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install development dependencies
run: pip install .[dev]
- name: Run pre-commit
run: pre-commit run --all-files