Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
matyhtf committed Dec 20, 2023
1 parent 1bc67ae commit 9f5316e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
php: [ '8.1', '8.2', '8.3' ]
steps:
- uses: actions/checkout@v4
- name: install-deps
- name: Install deps
run: sudo apt update -y && sudo apt install -y libcurl4-openssl-dev php-curl libc-ares-dev python3 python3-dev
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -35,10 +35,10 @@ jobs:
phpize
./configure --with-python-config=python3-config
make -j $(nproc)
make install
echo "extension=phpy.so" > /etc/php/8.0/cli/conf.d/90-phpy.ini
sudo make install
echo "extension=phpy.so" | sudo tee -a /etc/php/8.0/cli/conf.d/90-phpy.ini
php --ri phpy
- name: Run phpunit test
- name: Run phpunit tests
run: |
composer install
composer test

0 comments on commit 9f5316e

Please sign in to comment.