Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/check_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
name: Get PR labels
id: pr-labels
uses: joerick/pr-labels-action@v1.0.9

- name: Check make go-deps/tidy ran before commit
run: make go-deps/ci/check/no-tidy

- name: Run tests
run: |
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ go-deps/update: go-installed
go-deps/tidy: go-installed
go mod tidy && cd ./tests && go mod tidy && cd ../examples/cobra && go mod tidy

go-deps/ci/check/no-tidy: go-installed go-deps/tidy
git diff --exit-code

test: go-installed docker-installed bin/kind
./hack/run_tests.sh
$(MAKE) clean/test
Expand Down
Loading