Skip to content
This repository was archived by the owner on May 14, 2026. It is now read-only.

Better match

Better match #300

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install virtualenv
python -m virtualenv venv
source venv/bin/activate
pip install -r requirements-dev.txt
pip install pytest mypy flake8 black isort
pip install .
- name: Run tests
run: |
source venv/bin/activate
cd test
pytest