Skip to content

Attempt to fix/debug codeql #49

Attempt to fix/debug codeql

Attempt to fix/debug codeql #49

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on: [push, pull_request]
jobs:
run-make:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- { name: "make check", cmd: "make check" }
- { name: "make test", cmd: "make test" }
- { name: "make format --check", cmd: "make format FLAGS=--check" }
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Cache uv
uses: actions/cache@v4
with:
path: |
~/.cache/uv
.venv
key: ${{ runner.os }}-uv-${{ hashFiles('**/uv.lock', '**/pyproject.toml') }}
restore-keys: ${{ runner.os }}-uv-
- name: Install uv
run: |
set -euxo pipefail
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- run: ${{ matrix.cmd }}