Skip to content

svikramjeet/git-action-laravel-phpunit

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Git Action for Laravel PhpUnit

A GitHub action to run and validate test cases in laravel with phpunit

Git Action in market place

https://github.com/marketplace/actions/phpunit-for-laravel

Usage

To run your test suite in laravel application, commit a yml file (ci.yml or you can use any name) and following code placed in .github/workflows/ci.yml

name: PHP unit Tests
on: [push]

jobs:
  phpunit:
    name: PhpUnit
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - uses: svikramjeet/git-action-laravel-phpunit@master