Updated to support Stalwart Mail server #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-php: | |
name: Test on php ${{ matrix.php-version }} | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: ["5.4", "5.5", "5.6", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"] | |
experimental: [false] | |
composer-options: [''] | |
include: | |
- { php-version: 'nightly', composer-options: '--ignore-platform-req=php', experimental: true } | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use php ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Validate composer.json | |
run: composer validate | |
- name: Cache module | |
uses: actions/cache@v3 | |
with: | |
path: ~/.composer/cache/ | |
key: composer-cache | |
- name: Install dependencies | |
run: composer install --no-interaction --prefer-dist --no-progress ${{ matrix.composer-options }} | |
- name: Run php tests | |
run: composer run test |