We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d03108 commit 1fc51f5Copy full SHA for 1fc51f5
1 file changed
.github/workflows/tests.yml
@@ -124,7 +124,14 @@ jobs:
124
125
- name: Setup EPV
126
if: ${{ env.EPV != '0' }}
127
- run: composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs
+ env:
128
+ PHP_VERSION: ${{ matrix.php }}
129
+ run: |
130
+ if [[ "$(printf '%s\n' "$PHP_VERSION" "8.1" | sort -V | head -n1)" == "8.1" ]]; then
131
+ composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs --with-all-dependencies
132
+ else
133
+ composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs
134
+ fi
135
working-directory: ./phpBB3/phpBB
136
137
- name: Run code sniffer
0 commit comments