Skip to content

Commit fe457c7

Browse files
Update github actions
1 parent a27f58c commit fe457c7

File tree

2 files changed

+18
-45
lines changed

2 files changed

+18
-45
lines changed

.github/workflows/code-style.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Code Style"
2+
on: [pull_request]
3+
4+
jobs:
5+
code_style:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
10+
- name: Validate composer.json and composer.lock
11+
run: composer validate --strict
12+
13+
- name: "Laravel Pint"
14+
uses: aglipanci/laravel-pint-action@2.0.0
15+
with:
16+
verboseMode: true
17+
testMode: true
18+
configPath: "./pint.json"

.github/workflows/php.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)