Skip to content

Update l9format requirement from =1.3.2 to =1.4.0 #157

Update l9format requirement from =1.3.2 to =1.4.0

Update l9format requirement from =1.3.2 to =1.4.0 #157

Workflow file for this run

name: CI
on: push
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
poetry-version: ["2.3.1"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install GNU sed on macOS
if: runner.os == 'macOS'
run: brew install gnu-sed
- name: Install poetry
run: pip install poetry==${{ matrix.poetry-version}}
- name: Install deps
run: make install
- name: Run tests
run: make test
- name: Check formatting
run: make check-format
- name: Run linter
run: make lint
- name: Security audit
run: make audit
ci-windows:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
poetry-version: ["2.3.1"]
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry==${{ matrix.poetry-version}}
- name: Install deps
run: poetry install
- name: Run tests
run: poetry run pytest tests
- name: Check formatting
run: poetry run ruff format --check leakix/ tests/ example/ executable/
- name: Run linter
run: poetry run ruff check leakix/ tests/ example/ executable/
- name: Security audit
run: poetry run pip-audit