Skip to content

CI

CI #50

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
- develop
- verbose
paths-ignore:
- '**.md'
- 'examples/**'
create:
tags:
- 5.*
- 6.*
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.4']
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest --no-scripts
- name: Run test suite
run: composer run-script test