We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c01ca3 commit ea1b1c8Copy full SHA for ea1b1c8
.github/workflows/tests.yml
@@ -23,10 +23,10 @@ jobs:
23
run: go build -v ./...
24
25
- name: Test
26
-# env:
27
-# # GitHub sets the GITHUB_TOKEN secret automatically.
28
-# envfile: ${{ secrets.ENV_FILE }}
29
- run: echo '${{ secrets.ENV_FILE }}' | base64 --decode > .env && cat .env && go test -v ./...
+ env:
+ # GitHub sets the GITHUB_TOKEN secret automatically.
+ ENV_FILE: ${{ secrets.ENV_FILE }}
+ run: echo $ENV_FILE | base64 --decode > .env && cat .env && go test -v ./...
30
31
32
0 commit comments