Skip to content

Fix exception in blacklist feature (#164) #79

Fix exception in blacklist feature (#164)

Fix exception in blacklist feature (#164) #79

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
pull_request:
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . .[test]
- name: Test
run: pytest