Skip to content

Commit 93215c9

Browse files
committed
update workflows
1 parent a3b7565 commit 93215c9

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/codestyle.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
name: PHPCS check
1+
name: Code Style
22

33
on:
44
push:
5+
pull_request:
56

67
jobs:
78
php:
89
name: PHP
910
runs-on: ubuntu-latest
1011
steps:
11-
- uses: actions/checkout@v4.0.0
12+
- uses: actions/checkout@v4
1213
- name: Setup PHP with tools
1314
uses: shivammathur/setup-php@v2
1415
with:

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: shivammathur/setup-php@v2
2222
with:
2323
php-version: ${{ matrix.php }}
24-
- uses: actions/checkout@v4.0.0
24+
- uses: actions/checkout@v4
2525
- run: echo "::add-matcher::.github/php-syntax.json"
2626
- run: |
2727
! find . -type f -name '*.php' -exec php -l '{}' \; 2>&1 |grep -v '^No syntax errors detected'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
contents: write
1313

1414
steps:
15-
- uses: actions/checkout@v4.0.0
15+
- uses: actions/checkout@v4
1616

17-
- uses: actions/setup-node@v3.8.1
17+
- uses: actions/setup-node@v3
1818
with:
1919
node-version: 20
2020

0 commit comments

Comments
 (0)