Skip to content

Commit

Permalink
Fix messenger
Browse files Browse the repository at this point in the history
  • Loading branch information
loic425 committed Jan 2, 2025
1 parent a7c54d8 commit 33a2597
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/cqrs_pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,21 +50,18 @@ jobs:
${{ steps.composer-cache.outputs.dir }}
key: ${{ github.run_id }}-${{ runner.os }}-${{ hashFiles('composer.json') }}-symfony-${{ matrix.symfony }}

- name: "Validate composer.json"
run: (cd src/Cqrs && composer validate --no-check-version)

- name: "Install dependencies"
run: (cd src/Cqrs && composer update --no-interaction --no-scripts)

- name: "Validate composer.json"
run: (cd src/Cqrs && composer validate --strict --no-check-version)

- name: "Create test application"
run: |
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
(cd src/Cqrs && make create-test-application)
id: end-of-setup

- name: "Validate composer.json"
run: (cd src/Cqrs && composer validate --strict)

- name: "Run PHPUnit"
run: (cd src/Cqrs && vendor/bin/phpunit)
3 changes: 2 additions & 1 deletion src/Cqrs/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"type": "meta-package",
"license": "MIT",
"require": {
"php": "^8.3"
"php": "^8.3",
"symfony/messenger": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.4"
Expand Down

0 comments on commit 33a2597

Please sign in to comment.