Revert "remove old pyqt code" #633
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: Linting flake8 | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
- uses: usama2490/[email protected] | |
with: | |
# The GitHub API token to create reviews with | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Fail if "new" violations detected or "any", default "new" | |
failIf: new | |
# Additional arguments to pass to flake8, default "." (current directory) | |
args: "--extend-ignore=E121,E123 --max-line-length=120 ." |