Skip to content

Commit 37a7349

Browse files
committed
feat: Added ci workflow
1 parent b3286b2 commit 37a7349

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
types:
7+
- synchronize
8+
- opened
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Fix git issue
17+
run: git config --global --add safe.directory /app
18+
- name: Composer install
19+
uses: php-actions/composer@v6
20+
- name: Check code with phpstan
21+
uses: php-actions/phpstan@v3

0 commit comments

Comments
 (0)