Skip to content

Commit

Permalink
[chore] Add checkfile to versions.yaml (#379)
Browse files Browse the repository at this point in the history
* Update multimod-prerelease target
* Add multimod-verify to GH workflow
  • Loading branch information
pellared authored Jul 31, 2023
1 parent fe40e82 commit 52ec6e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
path: ~/.tools
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }}
- name: Run linters
run: make dependabot-check license-check lint
run: make multimod-verify dependabot-check license-check lint
- name: Build
run: make build
- name: Check clean repository
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,11 @@ check-clean-work-tree:
.PHONY: multimod-verify
multimod-verify: $(MULTIMOD)
@echo "Validating versions.yaml"
multimod verify
$(MULTIMOD) verify

.PHONY: multimod-prerelease
multimod-prerelease: $(MULTIMOD)
multimod prerelease -s=true -v ./versions.yaml -m tools
multimod-prerelease: multimod-verify $(MULTIMOD)
$(MULTIMOD) prerelease -s=true -v ./versions.yaml -m tools
$(MAKE) tidy

COMMIT?=HEAD
Expand Down
1 change: 1 addition & 0 deletions versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module-sets:
modules:
- go.opentelemetry.io/build-tools
- go.opentelemetry.io/build-tools/checkdoc
- go.opentelemetry.io/build-tools/checkfile
- go.opentelemetry.io/build-tools/chloggen
- go.opentelemetry.io/build-tools/crosslink
- go.opentelemetry.io/build-tools/dbotconf
Expand Down

0 comments on commit 52ec6e4

Please sign in to comment.