Skip to content

(docs) Update README with cleaned junk categories #59

(docs) Update README with cleaned junk categories

(docs) Update README with cleaned junk categories #59

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: python -m pip install -e ".[dev]"
- name: Lint
run: |
python -m pip install ruff
ruff check .
- name: Test
run: python -m pytest -q --cov=sifty --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
flags: py${{ matrix.python-version }}
fail_ci_if_error: false