Aussie Ass and 5KPorn Scraper Cleanup #572
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Standards | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
flake8-lint: | |
runs-on: ubuntu-20.04 | |
container: | |
image: python:2.7-buster | |
name: Lint | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v3 | |
- name: flake8 Lint | |
uses: reviewdog/action-flake8@v3 | |
with: | |
github_token: '${{ secrets.GITHUB_TOKEN }}' | |
filter_mode: file | |
fail_on_error: true | |
flake8_args: '--ignore E501,E722,F,C9,N8 --exclude Contents/Libraries/Shared' |