Skip to content

added a comment

added a comment #243

Workflow file for this run

name: lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
check-latest: true
- name: Checkout Repo Source
uses: actions/checkout@v3
- name: Install flake8
run: pip install flake8
# https://github.com/marketplace/actions/flake8-action
- name: Run flake8
uses: suo/flake8-github-action@releases/v1
with:
checkName: 'lint' # NOTE: this needs to be the same as the job name
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}