-
Notifications
You must be signed in to change notification settings - Fork 56
39 lines (36 loc) · 1010 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
36
37
38
39
---
name: pylint
on: push # yamllint disable-line rule:truthy
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies for running Pylint
run: |
uv pip install --system -U \
black \
git+https://github.com/akaihola/darkgraylib.git@main \
defusedxml \
pygments \
'pylint<=3.2.7' \
pylint-per-file-ignores \
pytest>=6.2.0 \
pyupgrade>=2.31.0 \
regex \
requests \
requests-cache \
ruamel.yaml \
setuptools \
toml
uv pip list --system
- uses: wearerequired/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
pylint: true
continue_on_error: false