[.github] - chore: add tests in PR CI #7
Workflow file for this run
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: CI | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v1 | |
with: | |
python-version: "3.9" | |
cache: true # enable caching | |
- name: Install dev dependencies | |
run: uv sync --extras dev | |
- name: Check formatting | |
run: uv run task check-formatting | |
- name: Run lint | |
run: uv run task lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v1 | |
with: | |
python-version: "3.9" | |
cache: true # enable caching | |
- name: Install dependencies | |
run: uv sync --extras dev | |
- name: Run tests | |
run: uv run task test |