update dev-requirements #3214
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: linting | |
on: [push] | |
env: | |
UV_SYSTEM_PYTHON: true | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
git submodule sync --recursive | |
git submodule update --init --recursive --jobs=4 | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Install package | |
run: | | |
uv pip install --no-deps . | |
- name: Install dev requirements | |
run: | | |
uv pip install -r dev-requirements.txt | |
- name: ruff check | |
run: | | |
ruff check src/pynxtools tests | |
- name: ruff format | |
run: | | |
ruff format --check src/pynxtools tests | |
- name: mypy | |
run: | | |
mypy src/pynxtools tests |