Skip to content

Remove mention of dev-master #16

Remove mention of dev-master

Remove mention of dev-master #16

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
strategy:
matrix:
php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: PHPUnit
run: composer run-script test