Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hivokas committed Feb 22, 2022
1 parent b927aee commit 2414d2a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 36 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/run-php-cs-fixer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Fix PHP Code Style

on:
workflow_dispatch:
push:
paths:
- '**.php'

jobs:
fix-php-code-style:
name: Fix PHP Code Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
token: ${{ secrets.GITHUB_TOKEN }}

- name: Run PHP CS Fixer
uses: docker://oskarstark/php-cs-fixer-ga:2.18.6

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Fix Backend Code Style
skip_fetch: true
13 changes: 4 additions & 9 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,13 @@ jobs:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*, 6.*]
php: [8.1, 8.0]
laravel: [9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 9.*
testbench: 7.*

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

Expand Down
1 change: 0 additions & 1 deletion .styleci.yml

This file was deleted.

26 changes: 0 additions & 26 deletions docs/installation.md

This file was deleted.

0 comments on commit 2414d2a

Please sign in to comment.