Some checks failed
CI Demo / build (push) Successful in 4s
Docker Test / docker-ops (push) Successful in 5s
.NET Test / dotnet-test (push) Failing after 23s
Go Test / go-test (push) Failing after 5s
Java Test / java-hello (push) Successful in 31s
Julia Test / julia-test (push) Failing after 14s
Kotlin Test / kotlin-hello (push) Successful in 37s
Node.js Test / nodejs-test (push) Failing after 6s
Notebook Test / nb-test (push) Failing after 7s
PHP Test / php-test (push) Failing after 41s
Python Test / python-hello (push) Successful in 3s
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
R Test / r-cmdcheck (push) Has been cancelled
19 lines
441 B
YAML
19 lines
441 B
YAML
name: PHP Test
|
|
on: [push]
|
|
|
|
jobs:
|
|
php-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up PHP
|
|
uses: shivammathur/setup-php@20169f80b72fbb73ec98664e85c82f0946b89868
|
|
|
|
- name: Install dependencies
|
|
run: composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
- name: Run tests
|
|
run: vendor/bin/phpunit --configuration phpunit.xml
|