Skip to content

Filter out automorphisms more efficiently #202

Filter out automorphisms more efficiently

Filter out automorphisms more efficiently #202

Workflow file for this run

name: CI
on: [push, workflow_dispatch, pull_request]
jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: pytest
run: pytest
- name: black
run: |
pip install black
black . --check --diff
- name: mypy
run: |
pip install mypy
mypy tucan