-
Notifications
You must be signed in to change notification settings - Fork 76
38 lines (32 loc) · 975 Bytes
/
lint.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
name: Linting
on:
pull_request:
paths:
- 'geotrek/**' # if geotrek code change
- '.github/workflows/lint.yml' # if lint workflow change
- 'dev-requirements.txt' # if dev-requirements.txt change
- 'setup.cfg' # if lint tools configuration change
env:
DEBIAN_FRONTEND: noninteractive
jobs:
migrations:
name: Checking SRID in migrations files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
test $(ls geotrek/*/migrations/*.py | xargs grep -l srid | xargs grep -L SRID | wc -l) -eq 0
flake8:
name: Checking Flake8 rules
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/python-cache-requirements
with:
requirements: dev-requirements.txt
- name: Install dependencies
run: |
pip3 install -c dev-requirements.txt flake8
- name: Flake8
run: |
flake8 geotrek