Skip to content
check-circle

GitHub Action

Yii PHPUnit

v0.2.0 Latest version

Yii PHPUnit

check-circle

Yii PHPUnit

A GitHub action to run your Yii project's PHPUnit test suite

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Yii PHPUnit

uses: inquid/yii-phpunit-action@v0.2.0

Learn more about this action in inquid/yii-phpunit-action

Choose a version

Yii PHPUnit Action

A GitHub action to run your Yii project's PHPUnit test suite.

Usage

You can quickly start using this on your Yii projects to run your test suite whenever a new commit is pushed with a file like the following placed in .github/workflows/test.yml

name: Tests
on: [push]

jobs:
  phpunit:
    name: PHPUnit
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - uses: inquid/yii-phpunit-action@master