From 803ea2c7895ea3a2174b292f691801ef0b410675 Mon Sep 17 00:00:00 2001 From: Joseph Szobody Date: Thu, 10 Aug 2023 12:16:26 -0400 Subject: [PATCH] workflow --- .github/workflows/run-tests.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/run-tests.yml diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 0000000..00af6f1 --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,26 @@ +name: CI PHP 8.2 + +on: [push] + +jobs: + build-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: php-actions/composer@v6 + with: + php_version: "8.2" + + - name: PHPUnit Tests + uses: php-actions/phpunit@v3 + env: + XDEBUG_MODE: coverage + with: + bootstrap: vendor/autoload.php + configuration: phpunit.xml + php_extensions: xdebug + args: --coverage-text + php_version: "8.2" + version: "10" \ No newline at end of file