From 2edeb4cf26a923a78d1851728ffd051db66851fe Mon Sep 17 00:00:00 2001 From: Doug Wright Date: Tue, 14 Sep 2021 20:56:20 +0100 Subject: [PATCH] Force latest -> latest --- .github/workflows/ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d925394f..71e8ccdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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: | @@ -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 @@ -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: |