Skip to content

Commit 028e12e

Browse files
authored
Create laravel.yml
1 parent ea17b3f commit 028e12e

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/laravel.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)