mirror of https://github.com/ceph/ceph-ansible.git
25 lines
687 B
YAML
25 lines
687 B
YAML
|
name: flake8
|
||
|
on:
|
||
|
pull_request:
|
||
|
jobs:
|
||
|
flake8:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- uses: ricardochaves/python-lint@v1.3.0
|
||
|
with:
|
||
|
python-root-list: "./library/"
|
||
|
use-pylint: false
|
||
|
use-pycodestyle: false
|
||
|
use-flake8: true
|
||
|
use-black: false
|
||
|
use-mypy: false
|
||
|
use-isort: false
|
||
|
extra-pylint-options: ""
|
||
|
extra-pycodestyle-options: ""
|
||
|
extra-flake8-options: "--max-line-length 160"
|
||
|
extra-black-options: ""
|
||
|
extra-mypy-options: ""
|
||
|
extra-isort-options: ""
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|