Skip to content

Commit 1ac680f

Browse files
Update README.md
1 parent bde487e commit 1ac680f

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
# laravel-phpunit-action
1+
# Laravel PHPUnit Action
22
A GitHub action to run your Laravel project's PHPUnit test suite.
3+
4+
## Usage
5+
You can quickly start using this on your Laravel projects to run your test suite whenever a new commit is pushed with a file like the following placed in `.github/workflows/test.yml`
6+
```yaml
7+
name: Tests
8+
on: [push]
9+
10+
jobs:
11+
phpunit:
12+
name: PHPUnit
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v1
16+
- uses: nathanheffley/laravel-phpunit-action@master
17+
```

0 commit comments

Comments
 (0)