From 246f105e882bed58feb9ffa1a30be463c52b216c Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Thu, 7 Dec 2023 09:17:16 -0800 Subject: [PATCH] Delete .github/workflows/run_flake8.yml --- .github/workflows/run_flake8.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/run_flake8.yml diff --git a/.github/workflows/run_flake8.yml b/.github/workflows/run_flake8.yml deleted file mode 100644 index 042b9379..00000000 --- a/.github/workflows/run_flake8.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Run style check -on: pull_request - -jobs: - run-flake8: - runs-on: ubuntu-latest - steps: - - name: Cancel non-latest runs - uses: styfle/cancel-workflow-action@0.11.0 - with: - all_but_latest: true - access_token: ${{ github.token }} - - - uses: actions/checkout@v3 - with: - submodules: 'recursive' - fetch-depth: 0 # tags are required for versioneer to determine the version - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.11' - - - name: Install flake8 - run: | - python -m pip install --upgrade pip - python -m pip install flake8 - python -m pip list - - name: Run flake8 - run: flake8