Skip to content

Rename LINCENSE.md to LICENSE.md #3

Rename LINCENSE.md to LICENSE.md

Rename LINCENSE.md to LICENSE.md #3

Workflow file for this run

name: PHP Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run-tests:
name: PHP ${{ matrix.php-versions }} Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: [
'8.0',
'8.1',
'8.2',
'8.3',
'8.4'
]
include:
- php-versions: '8.4'
experimental: true
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run tests
run: ./vendor/bin/phpunit