Skip to content

Commit

Permalink
Add test to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Jan 6, 2025
1 parent 388ed91 commit 71a41a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- name: 'PHPStan'
run: composer phpstan
- name: 'Coding Standards'
run: composer fix-cs
run: composer check-cs
- name: 'Pest Tests'
run: composer test
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/DatastarServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function boot(): void

private function registerRoutes(): void
{
Route::middleware(['web'])->group(function () {
Route::middleware(['web'])->group(function() {
Route::any(
'/datastar-controller',
[DatastarController::class, 'index'],
Expand Down

0 comments on commit 71a41a2

Please sign in to comment.