Skip to content

Commit

Permalink
Merge pull request #69 from jolicode/feature/symfony-7-support
Browse files Browse the repository at this point in the history
Symfony 7 support
  • Loading branch information
joelwurtz authored Jun 3, 2024
2 parents e6c74d8 + 802b899 commit 15f11da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,16 @@ jobs:
php-version: ${{ matrix.php-version }}
- name: composer install
run: composer update --prefer-dist --no-interaction ${{ matrix.composer-flags }}
- name: Build docker
- name: docker build
run: docker build -t httpbin .
- name: Run docker
- name: docker run
run: docker run -d --rm -p 8081:80 httpbin
- name: tests
run: bin/asynit tests --report report/asynit.xml

- name: Test Report
- name: check report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Asynit Tests ${{ matrix.php-version }}
path: report/asynit.xml
reporter: java-junit

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"amphp/http-client": "^v5.0.1",
"amphp/sync": "^2.0",
"bovigo/assert": "^7.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0"
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"suggest": {
"amphp/http-client": "To use the web test case trait"
Expand Down

0 comments on commit 15f11da

Please sign in to comment.