Skip to content

Commit

Permalink
[TASK] CI: Remove superfluous tests (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbertsoft authored Jul 21, 2022
1 parent 009d9d2 commit 95831c1
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Continuous Integration (CI)
name: Continuous Integration / Deployment (CI/CD)

on:
push:
Expand Down Expand Up @@ -372,15 +372,12 @@ jobs:
dependencies: ['lock']
experimental: [false]
include:
- php-version: 'latest'
dependencies: 'lock'
- php-version: '8.1'
dependencies: 'highest'
experimental: true
- php-version: 'latest'
dependencies: 'highest'
experimental: true
- php-version: 'nightly'
dependencies: 'lock'
experimental: true
- php-version: 'nightly'
dependencies: 'highest'
experimental: true
Expand Down Expand Up @@ -417,12 +414,8 @@ jobs:
- name: Setup authentication for Composer
run: composer config github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}

- name: Handle lowest dependencies update
if: contains(matrix.dependencies, 'lowest')
run: echo "COMPOSER_UPDATE_FLAGS=$COMPOSER_UPDATE_FLAGS --prefer-lowest" >> $GITHUB_ENV

- name: Allow alpha releases for latest-deps builds to catch problems earlier
if: contains(matrix.dependencies, 'highest')
if: ${{ matrix.dependencies == 'highest' }}
run: composer config minimum-stability alpha

- name: Set platform.php for nightly
Expand Down Expand Up @@ -461,15 +454,9 @@ jobs:
- php-version: '8.1'
dependencies: 'highest'
experimental: true
- php-version: 'latest'
dependencies: 'lock'
experimental: true
- php-version: 'latest'
dependencies: 'highest'
experimental: true
- php-version: 'nightly'
dependencies: 'lock'
experimental: true
- php-version: 'nightly'
dependencies: 'highest'
experimental: true
Expand Down Expand Up @@ -554,7 +541,6 @@ jobs:
path: var/log
retention-days: 7


coveralls-finish:
name: Finish Coveralls
needs:
Expand Down

0 comments on commit 95831c1

Please sign in to comment.