We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa1d937 + 904e327 commit 597d0b7Copy full SHA for 597d0b7
.github/workflows/laravel.yml
@@ -0,0 +1,21 @@
1
+name: Laravel
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ laravel-tests:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Copy .env
17
+ run: php -r "file_exists('.env') || copy('.env.example', '.env');"
18
+ - name: Install Dependencies
19
+ run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
20
+ - name: Execute tests (Unit and Feature tests) via PHPUnit
21
+ run: vendor/bin/phpunit
0 commit comments