From c1a2116a95196e250ace1366438e804c9db0f5bc Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Fri, 5 Nov 2021 18:50:38 +0100 Subject: [PATCH] CI test --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..36abe7af --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: [ push ] + +jobs: + build-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: php-actions/composer@v5 + - uses: php-actions/phpunit@v3 + - name: PHPUnit Tests + uses: php-actions/phpunit@v2 + env: + TEST_NAME: Test + with: + bootstrap: tests/bootstrap.php + configuration: phpunit.xml