Skip to content

Adjust selfpromobot to allow one Fanart post per seven days #106

Adjust selfpromobot to allow one Fanart post per seven days

Adjust selfpromobot to allow one Fanart post per seven days #106

Workflow file for this run

name: Code Verification
on: [push, pull_request]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
id: linters
uses: wearerequired/lint-action@v1
with:
black: true
auto_fix: false
black_args: "--line-length 120"
flake8: true
flake8_args: "--max-line-length=120"
continue_on_error: false