Skip to content

Remove uv.lock

Remove uv.lock #221

Workflow file for this run

# Run tests on Mac.
# Currently, Python3.11 is only used as an environment.
# This is mainly for the sake of speed.
name: Mac tests
on:
push:
branches:
- main
pull_request: {}
workflow_dispatch: {}
jobs:
tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v7
with:
python-version: 3.11
- name: Install
run: |
uv sync --group test
- name: Run Test
run: uv run pytest tests