Skip to content

Commit

Permalink
Merge pull request #2187 from tarlepp/chore(ci)_remove-matrix
Browse files Browse the repository at this point in the history
Chore(CI) - Removed `matrix` setup from GitHub actions
  • Loading branch information
tarlepp committed Feb 5, 2023
2 parents 5f0fc61 + 137af00 commit 8fbf726
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/main.yml
Expand Up @@ -20,8 +20,6 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: [ '8.2' ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -31,7 +29,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 # https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
php-version: '8.2'
tools: composer:v2

- name: Get composer cache directory
Expand Down Expand Up @@ -67,8 +65,6 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: [ '8.2' ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -78,7 +74,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 # https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
php-version: '8.2'
tools: composer:v2

- name: Get composer cache directory
Expand Down Expand Up @@ -120,8 +116,6 @@ jobs:
- lint-configuration
strategy:
fail-fast: false
matrix:
php-versions: ['8.2']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -131,7 +125,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 # https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
php-version: '8.2'
tools: composer:v2

- name: Get composer cache directory
Expand Down Expand Up @@ -210,8 +204,6 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
php-versions: ['8.2']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -221,7 +213,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 # https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
php-version: '8.2'
extensions: pdo_mysql, mysql
coverage: xdebug
tools: composer:v2
Expand Down

0 comments on commit 8fbf726

Please sign in to comment.