Skip to content

Commit

Permalink
ci(test): test ensure_linting workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobLichterfeld committed Sep 30, 2024
1 parent 21b0643 commit 7c610f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/devops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,33 +26,33 @@ jobs:

spell_check:
needs: check_paths
if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
# if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
uses: ./.github/workflows/spell_check.yml

ensure_linting:
needs:
- check_paths
- spell_check
if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
# if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
uses: ./.github/workflows/ensure_linting.yml

elixir:
needs:
- check_paths
- ensure_linting
if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
# if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
uses: ./.github/workflows/elixir.yml

elixir_test:
needs:
- check_paths
- ensure_linting
if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
# if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
uses: ./.github/workflows/elixir_test.yml

ghcr_build:
needs:
- check_paths
- elixir
if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
# if: needs.check_paths.outputs.githubfolder == 'false' || github.event_name == 'schedule'
uses: ./.github/workflows/ghcr_build.yml

0 comments on commit 7c610f7

Please sign in to comment.