Skip to content

Test against php 8.3 (#127) #198

Test against php 8.3 (#127)

Test against php 8.3 (#127) #198

Workflow file for this run

name: Test CI
on:
push:
branches:
- master
pull_request:
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php-version: [7.4, 8.0, 8.1, 8.2, 8.3]
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
- run: composer install
- run: vendor/bin/phpcs
- run: vendor/bin/psalm
- run: vendor/bin/phpunit