Skip to content

Commit

Permalink
chore: change tests config
Browse files Browse the repository at this point in the history
  • Loading branch information
vicradon committed Jul 19, 2024
1 parent 01c140e commit 9e2b6ec
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,28 @@ jobs:
test:
runs-on: ubuntu-latest
needs: build
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: db_name
env
TEST_USERNAME: postgres
TEST_PASSWORD: password
TEST_DB_NAME: db_name
TEST_DB_HOST: localhost
TEST_DB_PORT: 5432
TEST_DB_CONNECTION: pgsql
TEST_TIMEZONE: Africa/Lagos
TEST_SSLMODE: disable
TEST_MIGRATE: true
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: ${{ env.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ env.POSTGRES_DB }}
POSTGRES_USER: ${{ env.TEST_USERNAME }}
POSTGRES_PASSWORD: ${{ env.TEST_PASSWORD }}
POSTGRES_DB: ${{ env.TEST_DB_NAME }}
ports:
- 5432:5432
- ${{ env.TEST_DB_PORT }}:5432
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Create the app config file
run: cp app-sample.env app.env
- name: Run The Project
run: nohup go run main.go > /dev/null 2>&1 &
- name: Wait for application to start
run: sleep 30s
- name: Test for reachability
run: curl http://localhost:8019
- name: Run All Tests
run: go test ./... -timeout 99999s

Expand Down

0 comments on commit 9e2b6ec

Please sign in to comment.