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/ci.yaml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,16 +27,16 @@ jobs:
27
27
28
28
- name: Generate Go sources, CRDs and schemas
29
29
run: |
30
-
./docker-run.sh ./build.sh
30
+
bash ./docker-run.sh ./build.sh
31
31
if [[ ! -z $(git status -s) ]]
32
32
then
33
-
echo 'Command `./docker-run.sh ./build.sh` did introduce changes, which should not be the case if it had been run as part of the PR. Please run it locally and check in the results as part of your PR.'
33
+
echo 'Command `bash ./docker-run.sh ./build.sh` did introduce changes, which should not be the case if it had been run as part of the PR. Please run it locally and check in the results as part of your PR.'
34
34
git --no-pager diff
35
35
exit 1
36
36
fi
37
37
38
38
- name: Validate samples against schemas
39
-
run: ./docker-run.sh ./validate-samples.sh
39
+
run: bash ./docker-run.sh ./validate-samples.sh
40
40
41
41
- name: Run GO tests
42
42
run: go test -coverprofile cover.out -v ./...
@@ -45,7 +45,7 @@ jobs:
45
45
uses: codecov/codecov-action@v2.1.0
46
46
47
47
- name: Check typescript model generation
48
-
run: ./build/typescript-model/generate.sh
48
+
run: bash ./build/typescript-model/generate.sh
49
49
50
50
- name: Check GO mod state
51
51
run: |
@@ -75,7 +75,7 @@ jobs:
75
75
run: |
76
76
export PATH=$PATH:$(go env GOPATH)/bin
77
77
go install github.com/securego/gosec/v2/cmd/gosec@v2.14.0
0 commit comments