Convert deprecation warnings to errors #1318
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
# use the flake8 linter to annotate improperly formatted code | |
# from: https://github.com/marketplace/actions/run-flake8-on-your-pr-with-annotations | |
name: Run flake8 linter on PRs | |
on: | |
pull_request: | |
branches: | |
- development | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Annotate PR after running flake8 | |
uses: TrueBrain/actions-flake8@master | |
with: | |
max_line_length: 88 |