Skip to content

Change fuzzy matching default in the glossary #44

Change fuzzy matching default in the glossary

Change fuzzy matching default in the glossary #44

Workflow file for this run

name: CI actions
on: [pull_request]
jobs:
ci:
name: Run CI validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry==1.6.1
shell: bash
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Lint with flake8
run: poetry run flake8 . --count --statistics --show-source
- name: Check formatting with Black
run: poetry run black --check --diff .
- name: Check imports with isort
run: poetry run isort --check --diff .