-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (71 loc) · 2.56 KB
/
linter.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
name: Linter
on:
merge_group:
push:
pull_request:
repository_dispatch:
types: [trigger_checks]
jobs:
lint:
name: Lint (ruff, mypy, pylint)
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: .python-version
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip uv
uv pip install --system --upgrade pylint mypy ruff
uv pip install --system -e .
- name: Run Ruff
run: ruff check --output-format=github --exit-non-zero-on-fix .
- name: Run Ruff Format
run: ruff format --diff .
- name: Run mypy
run: |
mypy --install-types --non-interactive
- name: Run pylint
run: |
pylint atlasserver
superlinter:
name: Super linter
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: .python-version
- name: Create .env
run: |
touch .env
- name: Lint Code Base
uses: github/super-linter/slim@v4
env:
LINTER_RULES_PATH: ./
FILTER_REGEX_EXCLUDE: .*/lightcurveplotly.js
# LOG_LEVEL: WARNING
PYTHON_BLACK_CONFIG_FILE: pyproject.toml
PYTHON_MYPY_CONFIG_FILE: pyproject.toml
VALIDATE_PYTHON_BLACK: false
VALIDATE_PYTHON_FLAKE8: false
VALIDATE_PYTHON_ISORT: false
VALIDATE_PYTHON_MYPY: false
VALIDATE_PYTHON_PYLINT: false
VALIDATE_BASH: false
VALIDATE_CSS: false
VALIDATE_HTML: false # can't understand Django templates
VALIDATE_GITLEAKS: false
VALIDATE_JSCPD: false
YAML_ERROR_ON_WARNING: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}