Skip to content

[Warnings] Use user instead of member parameter #363

[Warnings] Use user instead of member parameter

[Warnings] Use user instead of member parameter #363

Workflow file for this run

name: Lint Python
on:
pull_request:
branches:
- master
push:
branches:
- master
repository_dispatch:
types:
- dispatched_test
env:
ref: ${{ github.event.client_payload.ref || '' }}
jobs:
lint_python:
name: Lint Python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ env.ref }}
- uses: actions/setup-python@v1
with:
python-version: "3.8"
- run: "python -m pip install flake8"
name: Install Flake8
- run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"
name: Flake8 Linting