Skip to content

Trigger CI

Trigger CI #9

Workflow file for this run

name: Lint
on:
push:
branches: ["main", "master", "develop"]
pull_request:
branches: ["main", "master", "develop"]
permissions:
contents: read
jobs:
lint-with-flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bootstrap
uses: ./.github/actions/bootstrap
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# --exit-zero to treats all errors as warnings.
flake8 . --exit-zero --count --statistics