mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Bumps [julianwachholz/flake8-action](https://github.com/julianwachholz/flake8-action) from v1.0.0 to v1.1.0. - [Release notes](https://github.com/julianwachholz/flake8-action/releases) - [Commits](https://github.com/julianwachholz/flake8-action/compare/v1.0.0...ec1e0b593723a867de8f34a7e0f3b5f901ea8afb) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
560 B
YAML
29 lines
560 B
YAML
name: flake8
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.py'
|
|
pull_request:
|
|
paths:
|
|
- '**.py'
|
|
|
|
jobs:
|
|
flake8_py3:
|
|
name: Python Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.7
|
|
architecture: x64
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Run flake8
|
|
uses: julianwachholz/flake8-action@v1.1.0
|
|
with:
|
|
checkName: 'Python Lint'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|