From 2584fad2af36b021d54cd53bd94f0df4b5487068 Mon Sep 17 00:00:00 2001 From: Matthias Neid Date: Thu, 14 Nov 2024 14:35:23 +0100 Subject: [PATCH] add github actions test workflow --- .github/workflows/test.yaml | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..c665f4f --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,44 @@ +name: Tests + +on: + workflow_dispatch: + pull_request: + push: + branches: + - master + +jobs: + tests: + runs-on: ubuntu-latest + + strategy: + matrix: + php-version: [ '8.3' ] + + name: Run tests on PHP v${{ matrix.php-version }} + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-version }} + + - name: Set composer cache directory + id: composer-cache + run: echo "COMPOSER_CACHE_DIRECTORY=$(composer config cache-files-dir)" >> $GITHUB_ENV + + - name: Restore composer from cache + uses: actions/cache@v4 + with: + path: ${{ env.COMPOSER_CACHE_DIRECTORY }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install composer dependencies + run: composer install --no-interaction --prefer-dist --no-progress + + - name: Run phpunit tests + run: composer test \ No newline at end of file