Skip to content

Commit 2583280

Browse files
committed
create cs workflow
1 parent f9848fd commit 2583280

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/CS.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CS
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
tests:
8+
runs-on: ubuntu-latest
9+
name: Code Style
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Install Dependencies
13+
run: php /usr/bin/composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
14+
- name: Verify
15+
run: php vendor/bin/pint --test

0 commit comments

Comments
 (0)