Skip to content

Commit e394a18

Browse files
authored
Merge pull request #1 from hariadi/github-actions
Setup laravel.yml
2 parents 2df6f13 + 42bca0a commit e394a18

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/laravel.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Laravel
2+
3+
on: [push]
4+
5+
jobs:
6+
laravel-tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Install Dependencies
11+
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
12+
- name: Execute tests (Unit and Feature tests) via PHPUnit
13+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)