Compile development dependencies with uv compile #3
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: Dependency Locks Check | |
on: | |
pull_request: | |
paths: | |
- dev-requirements/* | |
jobs: | |
check-locks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Check dependency locks | |
run: | | |
pip install -r dev-requirements.txt | |
nox -s check-dependency-locks |