Skip to content

Commit

Permalink
Add GitHub Action to run PHPUnit tests
Browse files Browse the repository at this point in the history
Rename workflow file for PHPCS, for better clarity
  • Loading branch information
thrijith committed Jan 27, 2020
1 parent c21cc1f commit 1ad1391
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
File renamed without changes.
12 changes: 12 additions & 0 deletions .github/workflows/phpunit_on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on: pull_request
name: PHPUnit
jobs:
runPHPCSInspection:
name: Run PHPUnit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run PHPUnit test
uses: docker://rtcamp/action-run-phpunit:v1.0.0

0 comments on commit 1ad1391

Please sign in to comment.