We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea17b3f commit 028e12eCopy full SHA for 028e12e
1 file changed
.github/workflows/laravel.yml
@@ -0,0 +1,15 @@
1
+name: Laravel
2
+
3
+on: [push]
4
5
+jobs:
6
+ think-tests:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v1
10
+ - name: Copy .env
11
+ run: php -r "file_exists('.env') || copy('.env.example', '.env');"
12
+ - name: Install Dependencies
13
+ run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
14
+ - name: phpstan analyse code
15
+ run: composer analyze
0 commit comments