-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 923 Bytes
/
pylint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: linting
on: [push]
env:
UV_SYSTEM_PYTHON: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
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_ellips tests
- name: ruff formatting
run: |
ruff format --check src/pynxtools_ellips tests
- name: mypy
run: |
mypy src/pynxtools_ellips tests