Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit fa65eac

Browse files
author
Andrey Helldar
authored
Merge pull request #68 from TheDragonCode/9.x
Updated codestyle fixer
2 parents bfbf4d9 + e8073bf commit fa65eac

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.github/workflows/lint-check.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Codestyle Check"
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
check:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Checking PHP Syntax
14+
uses: TheDragonCode/php-codestyler@latest

.github/workflows/lint.yml renamed to .github/workflows/lint-fix.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
name: Code Style
1+
name: "Codestyle Fix"
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches: [ main ]
46

57
jobs:
6-
build:
8+
fix:
79
runs-on: ubuntu-latest
810

911
steps:

0 commit comments

Comments
 (0)