Skip to content

Commit

Permalink
Implemented Continuous Integration
Browse files Browse the repository at this point in the history
  • Loading branch information
AliRizaAynaci committed Jun 10, 2024
1 parent 7acd11c commit 614b1a3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ jobs:
runs-on: ubuntu-latest
needs: build

services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: fleetmanagement_test
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit 614b1a3

Please sign in to comment.