mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.2.2 to 2.3.1. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2.2.2...v2.3.1) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
568 B
YAML
29 lines
568 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@v2.3.1
|
|
with:
|
|
python-version: 3.7
|
|
architecture: x64
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Run flake8
|
|
uses: julianwachholz/flake8-action@v2.0.2
|
|
with:
|
|
checkName: 'Python Lint'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|