Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
StanBarrows committed Sep 21, 2023
1 parent 04097ea commit 23f8e48
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: PHPStan

on:
<<<<<<< HEAD
=======
pull_request:
paths:
- '**.php'
- 'phpstan.neon.dist'
>>>>>>> 67aa803fa405c790afcc1f34b4afa5957b827114
push:
branches: [ main ]
pull_request:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
max-parallel: 1
matrix:
os: [ ubuntu-latest, windows-latest ]
php: [ 8.2 ]
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function getEnvironmentSetUp($app): void
'prefix' => '',
]);

if (is_dir(__DIR__ . '/Fixtures/Saloon/') && count(scandir(__DIR__ . '/Fixtures/Saloon')) > 0) {
if (is_dir(__DIR__.'/Fixtures/Saloon/') && count(scandir(__DIR__.'/Fixtures/Saloon')) > 0) {
$app['config']->set('zendesk.subdomain', 'codebar-zendesk');
$app['config']->set('zendesk.auth.email_address', 'fake-email');
$app['config']->set('zendesk.auth.api_token', 'fake-token');
Expand Down

0 comments on commit 23f8e48

Please sign in to comment.