Skip to content

Revert "Trigger daily thread rotation from new post feed" #111

Revert "Trigger daily thread rotation from new post feed"

Revert "Trigger daily thread rotation from new post feed" #111

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