Skip to content

Chore: Add uv to dependency installation #2

Chore: Add uv to dependency installation

Chore: Add uv to dependency installation #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install uv
make install
- name: Run pytest
run: make test