Revert "Trigger daily thread rotation from new post feed" #108
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 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 |