Skip to content

Modify phpunit.yml file #3

Modify phpunit.yml file

Modify phpunit.yml file #3

Workflow file for this run

name: Run PHPUnit Tests
on:
push:
branches:
- master
jobs:
run_tests:
name: Run PHPUnit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
- name: Install dependencies
run: composer update --ignore-platform-req=ext-iconv
- name: Run PHPUnit
run: php artisan test