We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7b2fb commit 93569dfCopy full SHA for 93569df
.github/workflows/code-quality.yml
@@ -24,14 +24,12 @@ jobs:
24
matrix:
25
operating-system: ['ubuntu-latest', 'macos-latest']
26
# Run on current stable and next RC if available
27
- php-versions: []
+ php-versions: [8.4]
28
pre-release: [false]
29
stable: [false]
30
include:
31
- php-versions: 8.5
32
pre-release: true
33
- - php-versions: 8.4
34
- stable: true
35
steps:
36
- name: Force linux line endings
37
run: |
@@ -86,7 +84,7 @@ jobs:
86
84
87
85
- name: Upload coverage to Codecov
88
# We only care about PHP 8.4 (latest stable) for our code coverage report
89
- if: matrix.stable == true
+ if: matrix.php-versions == 8.4
90
uses: codecov/codecov-action@v5
91
with:
92
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments