Skip to content

Commit

Permalink
remove deps as a required step
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed May 21, 2024
1 parent 3f4ba7a commit b25dc1c
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ env:
APP_URL: https://4geeks.com

# cache ------------------------------------
# | |> migrations --------
# | |> migrations --------
# |> undefined-and-unused-variables |> dependencies ------
# |> bad-docstrings |
# |> code-complexity |> tests -------|> dockerhub
# |> naming-conventions |> linter
# |> unexpected-behaviors |> pages
# | |> dependencies
# |> undefined-and-unused-variables |> migrations
# |> bad-docstrings |
# |> code-complexity |> tests -------|> dockerhub
# |> naming-conventions |> linter
# |> unexpected-behaviors |> pages


jobs:
Expand Down Expand Up @@ -370,7 +369,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}

linter:
needs: [migrations, dependencies]
needs: [migrations]
runs-on: ubuntu-latest
continue-on-error: true

Expand Down Expand Up @@ -406,7 +405,7 @@ jobs:
pipenv run format
pages:
needs: [migrations, dependencies]
needs: [migrations]
if: >-
github.repository == 'breatheco-de/apiv2' &&
github.event_name == 'push' &&
Expand Down

0 comments on commit b25dc1c

Please sign in to comment.