Skip to content

Commit a835d4b

Browse files
committed
misc: workflow update
1 parent 85f0b7d commit a835d4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
env:
1111
GH_TOKEN: ${{ github.token }}
12+
ATLAS_URI: ${{ secrets.ATLAS_URI }}
1213

1314
jobs:
1415
lint:
@@ -28,7 +29,6 @@ jobs:
2829
test:
2930
name: Test Code
3031
runs-on: ubuntu-latest
31-
environment: CI
3232
steps:
3333
- uses: actions/checkout@v4
3434
- uses: actions/setup-go@v5
@@ -38,7 +38,7 @@ jobs:
3838
working-directory: ./backend/
3939
run: |
4040
touch .env
41-
echo ATLAS_URI=${{ secrets.ATLAS_URI }} >> .env
41+
echo ATLAS_URI=$ATLAS_URI >> .env
4242
echo ENVIRONMENT=Dev >> .env
4343
- name: Test Code
4444
run: cd backend && go test ./...

0 commit comments

Comments
 (0)