Skip to content

Initial commit: algorithmic process mining pipeline #1

Initial commit: algorithmic process mining pipeline

Initial commit: algorithmic process mining pipeline #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- run: pip install -e ".[dev]"
- run: ruff check src/ tests/
- run: ruff format --check src/ tests/
- run: mypy src/
- run: bandit -r src/
- run: pip install pip-audit
- run: pip-audit --skip-editable
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install system deps
run: sudo apt-get update && sudo apt-get install -y graphviz
- run: pip install -e ".[test]"
- run: python -m pytest tests/ -v --tb=short --cov=src --cov-report=term-missing