You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: flake8 Lint
-
- on: [push, pull_request]
-
- jobs:
- flake8-lint:
- runs-on: ubuntu-latest
- name: Lint
- steps:
- - name: Check out source repository
- uses: actions/checkout@v3
- - name: Set up Python environment
- uses: actions/setup-python@v4
- with:
- python-version: "3.8"
- - name: flake8 Lint
- uses: py-actions/flake8@v2
- with:
- max-line-length: "110"
- plugins: "flake8-bugbear flake8-black"
|