You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ jobs:
41
41
test:
42
42
runs-on: ubuntu-latest
43
43
container:
44
-
image: golang:1.23-bullseye
44
+
image: golang:1.24-bookworm
45
45
needs: set-version
46
46
env:
47
47
SEMVER: ${{ needs.set-version.outputs.semVer }}
@@ -70,6 +70,8 @@ jobs:
70
70
- name: Run Tests
71
71
run: |
72
72
task coverage
73
+
ls -alt .coverage/out
74
+
ls -lat .coverage/report-junit.xml
73
75
- name: Publish Junit style Test Report
74
76
uses: mikepenz/action-junit-report@v4
75
77
if: always() # always run even if the previous step fails
@@ -84,8 +86,8 @@ jobs:
84
86
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret)
rc.Cmd.PersistentFlags().StringVarP(&rc.rootFlags.tokenSeparator, "token-separator", "s", "#", "Separator to use to mark concrete store and the key within it")
49
50
rc.Cmd.PersistentFlags().StringVarP(&rc.rootFlags.keySeparator, "key-separator", "k", "|", "Separator to use to mark a key look up in a map. e.g. AWSSECRETS#/token/map|key1")
51
+
rc.Cmd.PersistentFlags().BoolVarP(&rc.rootFlags.enableEnvSubst, "enable-envsubst", "e", false, "Enable envsubst on input. This will fail on any unset or empty variables")
0 commit comments