Skip to content

fix and improve unittest #7

fix and improve unittest

fix and improve unittest #7

name: Opencast PHP Library CI
on: [push, pull_request]
jobs:
tests:
name: Comaptibility with Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
dependency-versions:
- "lowest"
- "highest"
steps:
- name: Repo checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
- name: Install composer dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-versions }}
custom-cache-key: composer-${{ matrix.php-version }}-${{ matrix.dependency-versions }}-${{ hashFiles('**/composer.lock') }}
- name: PHP Compatibility
run: composer sniffer:php${{ matrix.php-version }}
- name: Run PHPUnit
run: vendor/bin/phpunit