Skip to content

Commit d3b5658

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

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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: Composer install
17+
uses: php-actions/composer@v6
18+
- name: Check code with phpstan
19+
uses: php-actions/phpstan@v3

0 commit comments

Comments
 (0)