From 6f4bf44b0d196c5a21579ad0d16d3ffd43b662bc Mon Sep 17 00:00:00 2001 From: connor Date: Thu, 26 Sep 2024 17:30:07 -0400 Subject: [PATCH] Adding test workflow --- .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9472c25 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +--- +name: Test + +on: + push: + branches: + - main + pull_request: + +jobs: + unit-tests: + name: Unit tests + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.2' + tools: phpunit + + - name: Run tests - phpunit + run: | + composer install + ./vendor/bin/phpunit --configuration phpunit.xml.dist tests/Unit