-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from monofony/0.1
upmerge 0.1
- Loading branch information
Showing
2 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) |
This file contains 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