Remove uv.lock
#221
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |