Skip to content

ci: on release push changes to 5.0.x #12

ci: on release push changes to 5.0.x

ci: on release push changes to 5.0.x #12

Workflow file for this run

name: Unit Testing
on:
push:
branches: [ "master", "5.0.x" ]
pull_request:
branches: [ "master", "5.0.x" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1]
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, gmp, json, mbstring, openssl
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --display-notices