[release-v1.18] Update quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2 Docker digest to 0041778 #2216
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Func Embedded FS Test | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| name: Func Embedded FS Test | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: knative/actions/setup-go@main | |
| - name: Check embedded templates content | |
| run: | | |
| if ! go test -run "^\QTestFileSystems\E$/^\Qembedded\E$" ./pkg/filesystem; then | |
| echo "Content of templates directory and embedded FS (zz_filesystem_generated.go) doesn't match!" | |
| echo "Consult https:.github.com/knative/func/blob/main/docs/CONTRIBUTING.md#templates ." | |
| exit 1 | |
| fi |