Skip to content

Start adding integration tests #25

Start adding integration tests

Start adding integration tests #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{matrix.php}}
extensions: pdo, imagick
- name: Install
run: |
composer install
- name: Test
run: |
composer test