Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Add symfony version lock to matrix build
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Dec 11, 2019
1 parent c8c694b commit 7f7a31f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,18 @@ branches:
contexts:
- "Coding Standards (7.4)"
- "Static Code Analysis (7.4)"
- "Tests (7.2, lowest)"
- "Tests (7.2, highest)"
- "Tests (7.3, lowest)"
- "Tests (7.3, highest)"
- "Tests (7.4, lowest)"
- "Tests (7.4, highest)"
- "Tests (7.2, lowest, ~4.2)"
- "Tests (7.2, lowest, ~5.0)"
- "Tests (7.2, highest, ~4.2)"
- "Tests (7.2, highest, ~5.0)"
- "Tests (7.3, lowest, ~4.2)"
- "Tests (7.3, lowest, ~5.0)"
- "Tests (7.3, highest, ~4.2)"
- "Tests (7.3, highest, ~5.0)"
- "Tests (7.4, lowest, ~4.2)"
- "Tests (7.4, lowest, ~5.0)"
- "Tests (7.4, highest, ~4.2)"
- "Tests (7.4, highest, ~5.0)"
- "Code Coverage (7.4)"
strict: true

Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ jobs:
- lowest
- highest

symfony:
- ~4.2
- ~5.0

steps:
- name: "Checkout"
uses: actions/checkout@v1
Expand All @@ -133,6 +137,9 @@ jobs:
restore-keys: |
php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
- name: "Lock symfony version"
run: composer require "symfony/symfony:${{ matrix.symfony }}" --no-update

- name: "Install lowest dependencies with composer"
if: matrix.dependencies == 'lowest'
run: composer update --no-interaction --no-progress --no-suggest --prefer-lowest
Expand Down

0 comments on commit 7f7a31f

Please sign in to comment.