We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbcf2b commit f3db402Copy full SHA for f3db402
1 file changed
.github/workflows/pr_test.yml
@@ -127,11 +127,22 @@ jobs:
127
for dockerFile in Dockerfile*; do docker build -f $dockerFile . ; done
128
golangci-latest:
129
name: lint-latest (informational)
130
+ needs: [config]
131
runs-on: ubuntu-latest
132
continue-on-error: true
133
steps:
134
- name: Checkout code
135
uses: actions/checkout@v5
136
+ with:
137
+ fetch-depth: 0
138
+ - name: Download config artifact
139
+ uses: actions/download-artifact@v4
140
141
+ name: config-artifact-${{ github.sha }}
142
+ path: pkg/config
143
+ - name: Verify embedded config exists
144
+ run: |
145
+ test -f pkg/config/config.toml || { echo "missing pkg/config/config.toml"; ls -la pkg/config; exit 1; }
146
- name: Setup Go
147
uses: actions/setup-go@v6
148
with:
0 commit comments