From 75d58d565e9acc5a4c291623a83573b8bde31120 Mon Sep 17 00:00:00 2001 From: Ranjan Shrestha Date: Thu, 5 Dec 2024 18:36:45 +0545 Subject: [PATCH] removed flake8 --- .github/workflows/flake8.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/flake8.yml diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml deleted file mode 100644 index b5951fc..0000000 --- a/.github/workflows/flake8.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Flake8 check. - -on: - pull_request: - push: - branches: - - main - -jobs: - check: - name: Flake8 check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - # Flake8 check - - name: Install flake8 - run: pip install flake8 - - name: Run flake8 - uses: suo/flake8-github-action@releases/v1 - with: - # NOTE: this needs to be the same as the job name - checkName: 'Flake8 check' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}