Anchor Watch Modular #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-latest | |
on: [push] | |
jobs: | |
build-test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install deps | |
run: | | |
sudo apt-get install -y php-bcmath | |
sudo apt-get install -y libmemcached-dev zlib1g-dev libssl-dev | |
sudo apt-get install -y php-memcached | |
- name: Install service memcached | |
uses: niden/actions-memcached@v7 | |
- name: Composer | |
uses: php-actions/composer@v6 | |
with: | |
php_version: "8.3" | |
php_extensions: memcached bcmath sockets | |
version: latest | |
- name: PHPUnit Tests | |
uses: php-actions/phpunit@master | |
env: | |
TEST_NAME: Poseidon | |
with: | |
version: 11.0 | |
php_version: 8.3 | |
php_extensions: bcmath memcached | |
bootstrap: vendor/autoload.php | |
configuration: test/phpunit.xml | |
# args: --coverage-text |