Skip to content

Commit

Permalink
Force latest -> latest
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Sep 14, 2021
1 parent 95769cd commit 2edeb4c
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,7 @@ jobs:
dependencies:
- "highest"
- "lowest"
- "force_latest"

exclude:
- php-version: "7.1"
dependencies: "force_latest" #PHPUnit has runtime checks

- php-version: "7.2"
dependencies: "force_latest" #PHPUnit has runtime checks
- "latest"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -100,6 +93,13 @@ jobs:
composer update --no-interaction --prefer-dist;
composer show;
- name: Install dependencies (latest)
if: matrix.dependencies == 'latest'
run: |
composer config minimum-stability dev;
composer update --no-interaction --prefer-dist;
composer show;
- name: Install dependencies (force latest)
if: matrix.dependencies == 'force_latest'
run: |
Expand Down Expand Up @@ -149,14 +149,7 @@ jobs:
dependencies:
- "highest"
- "lowest"
- "force_latest"

exclude:
- php-version: "7.1"
dependencies: "force_latest" #PHPUnit has runtime checks

- php-version: "7.2"
dependencies: "force_latest" #PHPUnit has runtime checks
- "latest"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -215,6 +208,13 @@ jobs:
composer update --no-interaction --prefer-dist;
composer show;
- name: Install dependencies (latest)
if: matrix.dependencies == 'latest'
run: |
composer config minimum-stability dev;
composer update --no-interaction --prefer-dist;
composer show;
- name: Install dependencies (force latest)
if: matrix.dependencies == 'force_latest'
run: |
Expand Down

0 comments on commit 2edeb4c

Please sign in to comment.