Skip to content

Commit

Permalink
Upgrade CI tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Syndesi committed Dec 3, 2023
1 parent 70bd915 commit fd9bdca
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
tools: composer:v2
- run: composer install --dev
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-leak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1']
php-version: ['8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-mutant-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
name: "Running mutant tests for PHP 8.1"
name: "Running mutant tests"
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
Expand All @@ -18,7 +18,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
tools: composer:v2
- run: composer install
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
tools: composer:v2
- run: composer install
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
tools: composer:v2
- run: composer install
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-unit-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
extensions: xdebug
tools: composer:v2
- run: composer install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1', '8.2-rc']
php-version: ['8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
Expand Down

0 comments on commit fd9bdca

Please sign in to comment.