Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Add checkfile to versions.yaml #379

Merged
merged 4 commits into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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