Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/php-cs-stan-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
php-version: [7.4]
php-version: [8.5]

steps:
- name: 'Checkout current revision'
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

strategy:
matrix:
php-version: [7.4, 8.0, 8.1]
php-version: [8.3, 8.4, 8.5]

steps:
- name: 'Checkout current revision'
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

strategy:
matrix:
php-version: [7.4, 8.0, 8.1]
php-version: [8.3, 8.4, 8.5]

steps:
- name: 'Checkout current revision'
Expand Down
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## php-cs-stan-unit.yml

Reusable workflow that launches on an ubuntu-latest phpcs, phpstan and phpunit (with php 7.4, 8.0 and 8.1) checks.
Reusable workflow that launches on an ubuntu-latest phpcs, phpstan and phpunit (with php 8.3, 8.4 and 8.5) checks.

Usage example of caller workflow:

Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
cs:
uses: bedita/github-workflows/.github/workflows/php-cs.yml@v1
with:
php_versions: '["7.4", "8.0", "8.1"]'
php_versions: '["8.3", "8.4", "8.5"]'
```

## php-psalm.yml
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
psalm:
uses: bedita/github-workflows/.github/workflows/php-psalm.yml@v1
with:
php_versions: '["7.4", "8.0", "8.1"]'
php_versions: '["8.3", "8.4", "8.5"]'
```

## php-stan.yml
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
stan:
uses: bedita/github-workflows/.github/workflows/php-stan.yml@v1
with:
php_versions: '["7.4", "8.0", "8.1"]'
php_versions: '["8.3", "8.4", "8.5"]'
```

## php-unit.yml
Expand Down Expand Up @@ -141,10 +141,17 @@ jobs:
coverage_min_percentage: 70

unit-5:
uses: bedita/github-workflows/.github/workflows/php-unit.yml@v1
uses: bedita/github-workflows/.github/workflows/php-unit.yml@v2
with:
php_versions: '["8.3","8.4"]'
bedita_version: '5'
coverage_min_percentage: 70

unit-6:
uses: bedita/github-workflows/.github/workflows/php-unit.yml@v2
with:
php_versions: '["7.4","8.0","8.1"]'
bedita_version: '5.0.0'
php_versions: '["8.4", "8.5"]'
bedita_version: '6'
coverage_min_percentage: 70
```

Expand Down