Skip to content

Commit

Permalink
chore: Updated ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lewislarsen committed Aug 27, 2024
1 parent 8508bc4 commit 3284f27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ main ]

jobs:
duster:
code-style:
uses: ./.github/workflows/duster-fix-blame.yml
permissions:
contents: write
Expand All @@ -18,7 +18,7 @@ jobs:
contents: write

static-analysis:
needs: duster
needs: [code-style, prettier]
uses: ./.github/workflows/static-analysis.yml

rector:
Expand All @@ -30,11 +30,11 @@ jobs:
uses: ./.github/workflows/pest-tests.yml

dusk-tests:
needs: pest-tests
needs: rector
uses: ./.github/workflows/dusk-tests.yml

ci-passed:
needs: [duster, prettier, static-analysis, rector, pest-tests, dusk-tests]
needs: [pest-tests, dusk-tests]
runs-on: ubuntu-latest
steps:
- run: echo "All CI checks passed!"

0 comments on commit 3284f27

Please sign in to comment.