Skip to content

Commit

Permalink
Optimize configs
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Sep 18, 2024
1 parent 5546765 commit cc073ad
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/security-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Security

on: [push, pull_request]

concurrency:
cancel-in-progress: true
group: tests-${{ github.workflow }}-${{ github.ref }}

jobs:
security:
name: Security Checks (PHP ${{ matrix.php }}, OS ${{ matrix.os }})
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: Code Style
name: Static Analysis

on: [push, pull_request]

concurrency:
cancel-in-progress: true
group: tests-${{ github.workflow }}-${{ github.ref }}

jobs:
psalm:
name: Psalm Validation (PHP ${{ matrix.php }}, OS ${{ matrix.os }})
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Testing

on: [push, pull_request]

concurrency:
cancel-in-progress: true
group: tests-${{ github.workflow }}-${{ github.ref }}

jobs:
unit:
name: Unit Testing
Expand Down
2 changes: 2 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
->include(__DIR__ . '/src')
->include(__DIR__ . '/testing/src')
->include(__FILE__)
->exclude(__DIR__ . '/src/Client/GRPC/ServiceClientInterface.php')
->allowRisky(false)
->build();
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"jetbrains/phpstorm-attributes": "dev-master@dev",
"laminas/laminas-code": "^4.0",
"phpunit/phpunit": "^10.5",
"spiral/code-style": "^2.0",
"spiral/code-style": "^2.1",
"spiral/core": "^3.13",
"symfony/var-dumper": "^6.0 || ^7.0",
"vimeo/psalm": "^4.30 || ^5.4"
Expand Down

0 comments on commit cc073ad

Please sign in to comment.