Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Richter committed Feb 29, 2024
1 parent 15ed25c commit 97060eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ jobs:
code-quality:
name: "Code quality checks"
runs-on: ubuntu-22.04
needs: composer-validate
steps:
- name: "Checkout"
uses: actions/checkout@v4
Expand Down Expand Up @@ -43,7 +42,7 @@ jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-22.04
needs: [ php-lint ]
needs: [ code-quality ]
strategy:
matrix:
php-version:
Expand Down Expand Up @@ -77,7 +76,7 @@ jobs:
functional-tests:
name: Functional Tests
runs-on: ubuntu-22.04
needs: [ php-lint, composer-validate ]
needs: [ code-quality ]
strategy:
matrix:
php-version:
Expand Down

0 comments on commit 97060eb

Please sign in to comment.