From 88eeb2026d1ec93079b89dd97467900ef1b2ef03 Mon Sep 17 00:00:00 2001 From: elza Date: Sun, 22 Sep 2024 14:58:00 -0400 Subject: [PATCH] add secrets --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4a451fe..63a4b88 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,4 +28,4 @@ jobs: args: controllers/ database/ models/ routes/ - name: Test - run: go test -v main_test.go \ No newline at end of file + run: DB_HOST=${{ secrets.DB_HOST }} DB_PASSWORD=${{ secrets.DB_PASSWORD }} DB_USER=${{ secrets.DB_USER }} DB_NAME=${{ secrets.DB_NAME }} DB_PORT=${{ secrets.DB_PORT }} go test -v main_test.go \ No newline at end of file