Skip to content

fix: add a step to activate the virtual env #2

fix: add a step to activate the virtual env

fix: add a step to activate the virtual env #2

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras
- name: activate virtual env
run: uv venv activate
- name: Run tests
run: |
pytest tests/