Skip to content

feat: bump php version to ^8.0 #11

feat: bump php version to ^8.0

feat: bump php version to ^8.0 #11

Workflow file for this run

name: Run CI
on: [push, pull_request]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
dependencies: ['normal', 'authoritative']
steps:
- uses: actions/checkout@v2
- name: Install dependencies
if: matrix.dependencies == 'normal'
run: composer install --prefer-dist
env:
COMPOSER_ROOT_VERSION: dev-master
- name: Install dependencies
if: matrix.dependencies == 'authoritative'
run: composer install --prefer-dist --classmap-authoritative
env:
COMPOSER_ROOT_VERSION: dev-master
- name: Run Phpunit
run: php -dzend.assertions=1 ./vendor/bin/phpunit