Skip to content

Commit 48e9950

Browse files
committed
Update github actions
1 parent f6cc3b7 commit 48e9950

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.github/workflows/cs-fix.yml

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

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php-version: ['8.1', '8.2', '8.3']
12+
php-version: ['8.1', '8.2', '8.3', '8.4']
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v2

.github/workflows/psalm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
on:
2-
pull_request:
2+
pull_request: null
33
push:
44
branches:
5+
- master
56
- '*.*'
67

78
name: static analysis

0 commit comments

Comments
 (0)