Skip to content

Draft: CONTRIB => create attachments with tinymce (textfield) when ur… #3008

Draft: CONTRIB => create attachments with tinymce (textfield) when ur…

Draft: CONTRIB => create attachments with tinymce (textfield) when ur… #3008

Workflow file for this run

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