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 b07df8c commit 6916b55Copy full SHA for 6916b55
.github/workflows/tests.yml
@@ -51,22 +51,16 @@ jobs:
51
52
lint:
53
runs-on: ubuntu-latest
54
- container:
55
- image: php:8.1
56
57
steps:
58
- name: Checkout code
59
uses: actions/checkout@v3
60
61
- - name: Install Git
62
- run: |
63
- apt-get update
64
- apt-get install -y git
65
-
66
- - name: Install composer
67
68
- curl -sS https://getcomposer.org/installer | php
69
- mv composer.phar /usr/local/bin/composer
+ - name: Setup PHP with PECL extension
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: curl
70
71
- name: Install
72
run: composer install
0 commit comments