Skip to content

Commit befeabf

Browse files
authored
Merge pull request #422 from prometheus/superq/add_mod_check
Add go mod version test
2 parents 1bc7f65 + 82accf3 commit befeabf

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
- run: make style
7777
- run: make -C sigv4 style
7878
- run: make -C assets style
79+
- run: make check-go-mod-version
7980
- when:
8081
condition: << parameters.use_gomod_cache >>
8182
steps:

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,8 @@ test:: deps check_license unused common-test lint
1919
.PHONY: generate-testdata
2020
generate-testdata:
2121
@cd config && go run generate.go
22+
23+
.PHONY: check-go-mod-version
24+
check-go-mod-version:
25+
@echo ">> checking go.mod version matching"
26+
@./scripts/check-go-mod-version.sh

scripts/check-go-mod-version.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
3+
readarray -t mod_files < <(find . -type f -name go.mod)
4+
5+
echo "Checking files ${mod_files[@]}"
6+
7+
matches=$(awk '$1 == "go" {print $2}' "${mod_files[@]}" | sort -u | wc -l)
8+
9+
if [[ "${matches}" -ne 1 ]]; then
10+
echo 'Not all go.mod files have matching go versions'
11+
exit 1
12+
fi

0 commit comments

Comments
 (0)