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 b8d5e75 commit 8a621b6Copy full SHA for 8a621b6
.github/workflows/tests.yml
@@ -32,6 +32,7 @@ jobs:
32
fail-fast: false
33
matrix:
34
php-version:
35
+ - "8.1"
36
- "8.2"
37
- "8.3"
38
- "8.4"
@@ -55,6 +56,14 @@ jobs:
55
56
- name: "Install dependencies"
57
run: "composer install --no-interaction --no-progress"
58
59
+ - name: "Transform source code"
60
+ if: matrix.php-version == '8.1'
61
+ shell: bash
62
+ run: |
63
+ composer install --no-interaction --no-progress --working-dir=compiler
64
+ ./compiler/vendor/bin/simple-downgrade downgrade -c build/downgrade.php ${{ matrix.php-version }}
65
+ composer dump
66
+
67
- name: "Tests"
68
run: "make tests"
69
@@ -159,7 +168,6 @@ jobs:
159
168
160
169
- "7.4"
161
170
- "8.0"
162
- - "8.1"
163
171
operating-system: [ ubuntu-latest, windows-latest ]
164
172
165
173
steps:
0 commit comments