chore(deps): bump nesbot/carbon in the composer group across 1 direct… #401
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main CI Pipeline | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
code-style: | |
uses: ./.github/workflows/duster-fix-blame.yml | |
permissions: | |
contents: write | |
prettier: | |
uses: ./.github/workflows/prettier.yml | |
permissions: | |
contents: write | |
static-analysis: | |
needs: [code-style, prettier] | |
uses: ./.github/workflows/static-analysis.yml | |
rector: | |
needs: static-analysis | |
uses: ./.github/workflows/run-rector.yml | |
pest-tests: | |
needs: rector | |
uses: ./.github/workflows/pest-tests.yml | |
ci-passed: | |
needs: [pest-tests] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "All CI checks passed!" |