Skip to content

Replace O(V·E) toposort rescan with reverse-adjacency map #270

Replace O(V·E) toposort rescan with reverse-adjacency map

Replace O(V·E) toposort rescan with reverse-adjacency map #270

Workflow file for this run

# SPDX-FileCopyrightText: 2025 Alexandre Gomes Gaigalas <alganet@gmail.com>
#
# SPDX-License-Identifier: ISC
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14", "3.15.0-alpha.5"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v7
- run: make sync-frozen
- run: make lint
- run: make coverage