uv-ize this project #10
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: Code quality | |
on: | |
push: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Acquire sources | |
uses: actions/checkout@v4.1.1 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: "3.12" | |
architecture: x64 | |
- name: Apply caching of dependencies | |
uses: actions/cache@v4.0.0 | |
with: | |
path: ~/.cache/pip | |
key: pip-${{ hashFiles('**/requirements-*.txt') }} | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Install dev dependencies | |
run: | | |
pip install -r dev-requirements.txt | |
- name: Run ruff | |
run: | | |
ruff format --diff . | |
ruff check --diff . |