Skip to content

Fix failing tests and remove .npm-cache from git #33

Fix failing tests and remove .npm-cache from git

Fix failing tests and remove .npm-cache from git #33

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run python -m pytest tests