Skip to content

Updated .gitignore to fix phpunit cache folder name #53

Updated .gitignore to fix phpunit cache folder name

Updated .gitignore to fix phpunit cache folder name #53

Workflow file for this run

name: Test
on: push
jobs:
test:
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["8.1", "8.2", "8.3"]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-versions }}"
- name: Install Composer
run: composer update --no-progress --prefer-dist --optimize-autoloader
- name: Run Tests
run: composer run-script test