-
Notifications
You must be signed in to change notification settings - Fork 18
100 lines (80 loc) · 2.5 KB
/
ci.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: CI
on: [push, pull_request_target]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: 📤 Checkout project
uses: actions/checkout@v3
- name: 📩 Fetch vendor from cache
uses: actions/cache@v3
id: cache
with:
path: vendor
key: composer-${{ hashFiles('**/composer.lock') }}
- name: 🐘 Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: "8.2"
tools: composer
env:
update: true
- name: 🔢 Create .env file
run: cp .env.example .env
- name: 📦 Install dependencies
run: composer install --quiet --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: 🔑 Generate a laravel key
run: php artisan key:generate
- name: ✅ Run PHPUnit tests
run: php artisan test
phpstan:
name: Static analysis
runs-on: ubuntu-latest
steps:
- name: 📤 Checkout project
uses: actions/checkout@v3
- name: 📩 Fetch vendor from cache
uses: actions/cache@v3
id: cache
with:
path: vendor
key: composer-${{ hashFiles('**/composer.lock') }}
- name: 🐘 Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: "8.2"
tools: composer
env:
update: true
- name: 📦 Install dependencies
run: composer install --quiet --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: ✅ Run static analysis
run: vendor/bin/phpstan analyse
coding-standards:
name: Coding standards
runs-on: ubuntu-latest
steps:
- name: 📤 Checkout project
uses: actions/checkout@v3
- name: 📩 Fetch vendor from cache
uses: actions/cache@v3
id: cache
with:
path: vendor
key: composer-${{ hashFiles('**/composer.lock') }}
- name: 🐘 Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: "8.2"
tools: composer
env:
update: true
- name: 📦 Install dependencies
run: composer install --quiet --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: ✅ Run Laravel Pint
run: vendor/bin/pint
- name: 📥 Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Fix coding standards issues