Skip to content

Merge pull request #63 from LeakIX/feature/replace-serde-with-datacla… #177

Merge pull request #63 from LeakIX/feature/replace-serde-with-datacla…

Merge pull request #63 from LeakIX/feature/replace-serde-with-datacla… #177

Workflow file for this run

name: CI
on: push
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install gsed (macOS)
if: runner.os == 'macOS'
run: brew install gnu-sed
- name: Install dependencies
run: make install
- name: lint
run: make lint
- name: format check
run: make check-format
- name: sort-check
run: make check-sort
- name: typecheck
run: make typecheck
- name: test
run: make test
- name: security-audit
run: make security-check