Skip to content

Commit

Permalink
don't run flake8 (there are bigger fish to fry)
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Nov 15, 2024
1 parent a58d42f commit 05f94d1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/wipac-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
# LINTERS
###########################################################################

flake8:
needs: [ py-versions ]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py3 }}
- uses: WIPACrepo/wipac-dev-flake8-action@v1.1
#flake8:
# needs: [ py-versions ]
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }}
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.py3 }}
# - uses: WIPACrepo/wipac-dev-flake8-action@v1.1

mypy:
needs: [ py-versions ]
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
release:
# only run on main/master/default
if: format('refs/heads/{0}', github.event.repository.default_branch) == github.ref
needs: [ flake8, mypy, py-setup, tests ]
needs: [ mypy, py-setup, tests ]
runs-on: ubuntu-latest
concurrency: release # prevent any possible race conditions
steps:
Expand Down

0 comments on commit 05f94d1

Please sign in to comment.