-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major bump cego-filebeat-logger (#18)
* Major bump filebeat-logger-laravel * Refactor github action workflow quality-assurance.yml * Refactor github action workflow quality-assurance.yml * php-cs-fixer does not support 8.2 yet --------- Co-authored-by: Mads Jon Nielsen <[email protected]>
- Loading branch information
Showing
2 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
on: [push, pull_request] | ||
name: lint | ||
on: | ||
push: | ||
tags-ignore: | ||
- '**' | ||
branches: | ||
- master | ||
pull_request: {} | ||
|
||
jobs: | ||
php-cs-fixer: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php-version: [8.1] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.4 | ||
php-version: ${{ matrix.php-version }} | ||
- run: composer install | ||
- run: ./vendor/bin/php-cs-fixer fix --dry-run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters