Skip to content

Commit

Permalink
Update Build setting
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Apr 28, 2024
1 parent 9629c80 commit 4dcef4a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
php_versions: ['8.1', '8.2', '8.3']

runs-on: ubuntu-latest
name: PHPUnit - PHP ${{ matrix.php_versions }} - Memory SQLite
Expand Down Expand Up @@ -50,8 +50,9 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
fail_ci_if_error: true

Expand All @@ -60,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
php_versions: ['8.1', '8.2', '8.3']

runs-on: ubuntu-latest
name: PHPUnit - PHP ${{ matrix.php_versions }} - MySQL
Expand Down Expand Up @@ -128,8 +129,9 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
fail_ci_if_error: true

Expand All @@ -138,7 +140,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
php_versions: ['8.1', '8.2', '8.3']

runs-on: ubuntu-latest
name: PHPUnit - PHP ${{ matrix.php_versions }} - SQLite
Expand Down Expand Up @@ -181,8 +183,9 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
fail_ci_if_error: true

Expand All @@ -191,7 +194,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
php_versions: ['8.1', '8.2', '8.3']

runs-on: ubuntu-latest
name: PHPUnit - PHP ${{ matrix.php_versions }} - PostgreSQL
Expand Down Expand Up @@ -240,8 +243,9 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
fail_ci_if_error: true

Expand All @@ -250,7 +254,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
php_versions: ['8.1', '8.2', '8.3']

runs-on: windows-latest
name: PHPUnit - PHP ${{ matrix.php_versions }} - Windows
Expand Down Expand Up @@ -292,7 +296,8 @@ jobs:
vendor/bin/phpunit
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .github/workflows/PHPStan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
php_versions: ['8.1', '8.2', '8.3']

runs-on: ubuntu-latest
name: PHPStan - ${{ matrix.php_versions }}
Expand Down

0 comments on commit 4dcef4a

Please sign in to comment.