Skip to content

Add random projection codec to the benchmark #257

Add random projection codec to the benchmark

Add random projection codec to the benchmark #257

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Check with ruff
uses: astral-sh/ruff-action@v3
with:
args: check
fmt:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Check with ruff
uses: astral-sh/ruff-action@v3
with:
args: "format --diff --check"
mypy:
name: Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Setup Python
run: uv python install
- name: Install the package
run: uv sync && uv pip install .
- name: Typecheck the package
run: uv run mypy -p climatebenchpress.compressor