Skip to content

Commit 2414d2a

Browse files
committed
wip
1 parent b927aee commit 2414d2a

File tree

4 files changed

+30
-36
lines changed

4 files changed

+30
-36
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Fix PHP Code Style
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- '**.php'
8+
9+
jobs:
10+
fix-php-code-style:
11+
name: Fix PHP Code Style
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 2
17+
token: ${{ secrets.GITHUB_TOKEN }}
18+
19+
- name: Run PHP CS Fixer
20+
uses: docker://oskarstark/php-cs-fixer-ga:2.18.6
21+
22+
- name: Commit changes
23+
uses: stefanzweifel/git-auto-commit-action@v4
24+
with:
25+
commit_message: Fix Backend Code Style
26+
skip_fetch: true

.github/workflows/run-tests.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,13 @@ jobs:
77

88
runs-on: ubuntu-latest
99
strategy:
10-
fail-fast: true
1110
matrix:
12-
php: [8.0, 7.4, 7.3]
13-
laravel: [8.*, 7.*, 6.*]
11+
php: [8.1, 8.0]
12+
laravel: [9.*]
1413
dependency-version: [prefer-lowest, prefer-stable]
1514
include:
16-
- laravel: 8.*
17-
testbench: 6.*
18-
- laravel: 7.*
19-
testbench: 5.*
20-
- laravel: 6.*
21-
testbench: 4.*
15+
- laravel: 9.*
16+
testbench: 7.*
2217

2318
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2419

.styleci.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/installation.md

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

0 commit comments

Comments
 (0)