Skip to content

Commit

Permalink
Merge branch 'main' into embed-v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki777 committed Jun 19, 2024
2 parents 010ae6e + 1755f20 commit 5e11a47
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,19 @@ jobs:
tests/Redis6016Test.php
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install PHP and Composer on macOS
if: matrix.os == 'macos-latest'
run: |
brew update
brew install php
brew install composer
- name: Install PHP and Composer on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y php
sudo apt-get install -y composer
- name: Composer install
run: |
composer install
Expand Down

0 comments on commit 5e11a47

Please sign in to comment.