diff --git a/.github/workflows/pr-linter.yml b/.github/workflows/pr-linter.yml deleted file mode 100644 index 401ee28..0000000 --- a/.github/workflows/pr-linter.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: pr-linter - -on: [pull_request] - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: usama2490/lintly-flake8-github-action@v1.1 - 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: "--select=E --exclude=examples/ --max-line-length 100 --extend-ignore E241"