From fece87bca86f1c4e21d5231cb93876db85695a01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hubert=20Pa=C5=82asz?= Date: Fri, 4 Nov 2022 11:54:19 +0100 Subject: [PATCH] Add GHA workflow --- .github/workflows/test.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 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..0b2638e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,34 @@ +name: Run tests and analytics +on: + pull_request: + branches: + - 'master' + - 'develop' + - 'v*.*.*' + +jobs: + test: + runs-on: ubuntu-20.04 + strategy: + fail-fast: false + matrix: + php_version: [7.0, 7.1, 7.2] + coverage: [none, pcov] + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Setup PHP with composer. + uses: shivammathur/setup-php@2.22.0 + with: + php-version: ${{matrix.php_version}} + tools: composer:v2 + coverage: ${{matrix.coverage}} # XDebug disabled + - name: Install composer dependencies + run: | + cp phpunit.xml.dist phpunit.xml + composer install + composer require --dev phpstan/phpstan + - name: Run tests and analytics + run: | + vendor/phpunit/phpunit/phpunit -c phpunit.xml tests/ + vendor/bin/phpstan analyse -l 7 lib/ \ No newline at end of file