diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index cca31641..66f1cddc 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -46,6 +46,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v4 + - name: Create app config file + run: cp app-sample.env app.env - name: Run All Tests run: go test ./... -timeout 99999s diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 4635d516..621b0a3c 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -46,6 +46,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v4 + - name: Create app config file + run: cp app-sample.env app.env - name: Run All Tests run: go test ./... -timeout 99999s diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 94bc0c8c..49aea6d3 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -46,6 +46,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v4 + - name: Create app config file + run: cp app-sample.env app.env - name: Run All Tests run: go test ./... -timeout 99999s