Valinor/.github/workflows/tests.yml

45 lines
1.1 KiB
YAML
Raw Normal View History

2021-11-28 17:43:02 +01:00
name: Tests
2021-11-29 13:24:11 +01:00
on: [push, pull_request]
2021-11-28 17:43:02 +01:00
jobs:
tests:
name: PHP ${{ matrix.php-version }} / ${{ matrix.dependencies }}
2021-11-28 17:43:02 +01:00
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
dependencies:
- "lowest"
- "highest"
- "locked"
php-version:
- "7.4"
- "8.0"
- "8.1"
2022-10-19 13:32:16 +02:00
- "8.2"
2021-11-28 17:43:02 +01:00
env:
php-extensions: yaml
2021-11-28 17:43:02 +01:00
steps:
- name: Checkout
uses: actions/checkout@v3
2021-11-28 17:43:02 +01:00
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
2021-11-28 17:43:02 +01:00
extensions: ${{ env.php-extensions }}
ini-values: zend.assertions=1
- uses: "ramsey/composer-install@v2"
2021-11-28 17:43:02 +01:00
with:
dependency-versions: ${{ matrix.dependencies }}
2021-11-28 17:43:02 +01:00
- name: Running unit tests
run: php vendor/bin/phpunit --testsuite=unit
- name: Running functional tests
run: php vendor/bin/phpunit --testsuite=functional
- name: Running integration tests
run: php vendor/bin/phpunit --testsuite=integration