Skip to content

Bump phpunit/phpunit from 9.5.13 to 9.6.33 #13

Bump phpunit/phpunit from 9.5.13 to 9.6.33

Bump phpunit/phpunit from 9.5.13 to 9.6.33 #13

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
run:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ 'ubuntu-latest', 'windows-latest' ]
php-versions: [ '8.0', '8.1', ]
steps:
- name: Checkout Source.
uses: actions/checkout@v2
- name: Setup PHP 8
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: mbstring, intl
tools: phpunit
- name: Run PHPUnit
run: |
composer install
phpunit tests --bootstrap vendor/autoload.php