Skip to content

Merge pull request #6 from BaguettePHP/replace-phpunit #3

Merge pull request #6 from BaguettePHP/replace-phpunit

Merge pull request #6 from BaguettePHP/replace-phpunit #3

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**/*.md'
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: composer
extensions: intl, mbstring
- name: Setup Composer
run: 'composer install'
- name: Run tests
run: './vendor/bin/phpunit'