We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e60b8 commit 03203dbCopy full SHA for 03203db
.github/workflows/ci-tests.yaml
@@ -117,3 +117,27 @@ jobs:
117
- name: Run manifest tests
118
run: |
119
make test-manifests
120
+
121
+ registry-scanner:
122
+ name: Ensure registry-scanner Go modules synchronicity and run tests
123
+ runs-on: ubuntu-latest
124
+ steps:
125
+ - name: Checkout code
126
+ uses: actions/checkout@v4
127
+ - name: Setup Golang
128
+ uses: actions/setup-go@v5
129
+ with:
130
+ go-version: '1.22'
131
+ - name: Download all Go modules
132
+ run: |
133
+ cd registry-scanner
134
+ go mod download
135
+ - name: Check for tidyness of go.mod and go.sum
136
137
+ go mod tidy
138
+ git diff --exit-code -- .
139
+ - name: Run tests
140
+ env:
141
+ GNUPG_DISABLED: true
142
143
+ make test
0 commit comments