Skip to content

Commit cfa88d4

Browse files
committed
Add GitHub actions (Psalm, CS fixer)
1 parent 050fa5b commit cfa88d4

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/cs-fix.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on:
2+
push:
3+
branches:
4+
- '*'
5+
6+
name: Fix Code Style
7+
8+
jobs:
9+
cs-fix:
10+
permissions:
11+
contents: write
12+
uses: spiral/gh-actions/.github/workflows/cs-fix.yml@master

.github/workflows/psalm.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
push:
3+
branches:
4+
- '*.*'
5+
pull_request: null
6+
7+
name: static analysis
8+
9+
jobs:
10+
psalm:
11+
uses: spiral/gh-actions/.github/workflows/psalm.yml@master
12+
with:
13+
os: >-
14+
['ubuntu-latest']

0 commit comments

Comments
 (0)