Update file path to prevent a file not found error in production #14
This file contains 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
name: Run Unit Tests. | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- name: Install Python | |
run: uv python install | |
- name: Install Dependencies | |
run: uv sync --all-extras --dev | |
- name: Run Unit Tests | |
run: uv run pytest tests |