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 e4c0429 commit 4c3d07cCopy full SHA for 4c3d07c
.github/workflows/test.yml
@@ -25,8 +25,21 @@ jobs:
25
uses: actions/setup-go@v5
26
with:
27
go-version: '1.23'
28
- - name: Install Composer
29
- uses: php-actions/composer@v6
+
+ - name: Install PHP and Composer
30
+ run: |
31
+ if [ "$RUNNER_OS" == "Linux" ]; then
32
+ sudo apt-get update
33
+ sudo apt-get install -y php php-curl php-mbstring php-xml
34
+ curl -sS https://getcomposer.org/installer | php
35
+ sudo mv composer.phar /usr/local/bin/composer
36
+ elif [ "$RUNNER_OS" == "macOS" ]; then
37
+ brew install composer
38
+ elif [ "$RUNNER_OS" == "Windows" ]; then
39
+ choco install composer -y
40
+ fi
41
+ composer --version
42
+ shell: bash
43
44
- name: Install Bower
45
run: |
0 commit comments