mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
17 lines
421 B
YAML
17 lines
421 B
YAML
name: Lint Python
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint_python:
|
|
name: Lint Python
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- 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
|