Merge pull request #16 from malkoG/feature/curation #24
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
# The name of the action | |
name: pk web site backend testing | |
# When the action is triggered | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# What to do when the action is triggered | |
jobs: | |
testing: | |
# Run on a Ubuntu VM | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Run tests | |
run: uv run pytest | |