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 2fa02c4 commit 5263643Copy full SHA for 5263643
.github/workflows/loristest.yml
@@ -24,7 +24,7 @@ jobs:
24
uses: shivammathur/setup-php@v2
25
with:
26
php-version: ${{ matrix.php }}
27
- extensions: zip, php-ast
+ extensions: zip, php7.3-ast, php7.4-ast
28
29
- name: Validate composer.json and composer.lock
30
run: composer validate
@@ -42,7 +42,9 @@ jobs:
42
run: sed -i "s/7.3/${{ matrix.php }}/g" Dockerfile.test.php7
43
44
- name: Install OS package dependencies
45
- run: sudo apt-get install php-ast
+ run: |
46
+ sudo apt-get install php7.3-ast
47
+ sudo apt-get install php7.4-ast
48
49
- name: Install composer dependencies
50
if: steps.composer-cache.outputs.cache-hit != 'true'
0 commit comments