Files
TwoFactorAuth/.github/workflows/test.yml
T
Matthew Peveler 2a2b91023c add php 8.0 to matrix
Signed-off-by: Matthew Peveler <matt.peveler@popsql.com>
2021-02-04 09:47:09 -05:00

28 lines
465 B
YAML

name: Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
coverage: xdebug
- uses: ramsey/composer-install@v1
- run: composer lint
- run: composer test