remove GitHub Action for PHP tests

This commit is contained in:
Philipp 2021-05-15 23:35:08 +02:00
parent fe9dd2e12d
commit f1e268ee0a
No known key found for this signature in database
GPG key ID: 9A28B7D4FF5667BD
2 changed files with 0 additions and 114 deletions

View file

@ -1,13 +0,0 @@
#!/bin/bash
PHPUNIT="$(git rev-parse --show-toplevel)/bin/phpunit"
if ! [ -x "$PHPUNIT" ]; then
echo "Install PHPUnit 8"
cd /tmp/
curl -s -O -L https://phar.phpunit.de/phpunit-8.phar
chmod +x phpunit-8.phar
mv phpunit-8.phar $PHPUNIT
fi
echo "Using $PHPUNIT $($PHPUNIT --version)"