Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rhonalindiefolks committed Jan 1, 2025
1 parent f06f845 commit 25e391b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,10 @@ jobs:

- name: Php Pest
run: composer test-ci

build:
needs: [test, lint]
runs-on: [self-hosted, production]
steps:
- name: Checkout repository
uses: actions/checkout@v4
3 changes: 2 additions & 1 deletion routes/route.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
'/',
function (Request $request, Response $response, $args) {

$response->getBody()->write("Hello world rhonal!");
$response->getBody()->write("V1- Hello world rhonal!");
return $response;
}
);


$app->get('/factory', FactoryAction::class . ':home');

$app->post('/abstract-factory/car', AbstractFactoryAction::class . ':car');
Expand Down

0 comments on commit 25e391b

Please sign in to comment.