-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (44 loc) · 1.37 KB
/
linting.yaml
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
---
name: "Linting"
on:
- push
jobs:
lint:
name: "Linting"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v2
- name: "Setup Python"
uses: actions/setup-python@v1
with:
python-version: '3.11'
- name: "Install OS dependencies"
run: |
sudo apt-get update
sudo apt-get install -y --fix-missing libxmlsec1-dev pkg-config
- name: "Install Poetry"
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: "Restore any cached Poetry dependencies"
uses: actions/cache@v1
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: "Install any new dependencies"
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'
- name: "Run Black"
run: poetry run black --quiet --check website
- name: "Run flake8"
run: >-
poetry run
flake8
--exclude="migrations,website/tosti/settings/*.py"
--max-line-length=119
website
- name: "Run PyDocStyle"
run: poetry run pydocstyle --explain --add-ignore=D100,D104 --match-dir='(?!sp)(?!migrations).*'