-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (35 loc) · 973 Bytes
/
static.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Static analysis
on:
push:
paths-ignore:
- 'frontend/**'
pull_request:
types: [opened]
paths-ignore:
- 'frontend/**'
jobs:
larastan:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1]
steps:
- uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
- name: Testing PHP version
run: php -v
- name: Install Dependencies
run: |
composer clear-cache
# composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
composer install --no-ansi --no-interaction --no-scripts --prefer-dist
- name: Prepare Laravel Application
run: |
cp .env.example .env
php artisan key:generate
- name: Execute phpstan
run: composer larastan
- name: Execute phpinsights
run: composer phpinsights