Skip to content

fix actions

fix actions #1

Workflow file for this run

name: CI check
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
# make depends on uv
- name: Install dependencies
run: |
pip install uv
make install
- name: Run linter
run: |
make lint
- name: Run pytest
run: |
make test