Skip to content

Commit

Permalink
chore: add symfony version to matrix pipeline (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferror authored Jan 12, 2024
1 parent dffbdb2 commit 75f4050
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
name: CI - PHP ${{ matrix.php }}, Dependencies ${{ matrix.dependencies }}
strategy:
matrix:
php: [8.2, 8.3]
dependencies: [lowest, highest]
include:
-
php: 8.2
dependencies: lowest
coveralls: true

steps:
- # Copies the repository files to the Action Runner
Expand All @@ -25,6 +32,8 @@ jobs:
- # Installs and caches PHP dependencies
name: Install Dependencies
uses: ramsey/[email protected]
with:
dependency-versions: ${{ matrix.dependencies }}

- # Validates composer.json structure and required fields
name: Validate composer.json
Expand All @@ -44,7 +53,9 @@ jobs:
docker run --rm -v $(pwd):/app asyncapi/cli:0.54.3 validate /app/var/asyncapi.yaml
docker run --rm -v $(pwd):/app asyncapi/cli:0.54.3 validate /app/var/asyncapi.json
- name: Coveralls
-
name: Coveralls
if: ${{ matrix.coveralls }}
uses: coverallsapp/[email protected]
with:
file: var/coverage/clover.xml

0 comments on commit 75f4050

Please sign in to comment.