Skip to content

Modify phpunit.yml file #2

Modify phpunit.yml file

Modify phpunit.yml file #2

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 --no-interaction --prefer-dist
- name: Run PHPUnit
run: php artisan test