chore: add node-bootstrapper to make test target (#5165)

Co-authored-by: Lily Pan <lilypan@microsoft.com>
Co-authored-by: Devinwong <wongsiosun@outlook.com>
This commit is contained in:
lilypan26 2024-10-28 09:50:45 -07:00 коммит произвёл GitHub
Родитель e341ae5105
Коммит 730359ab5a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 5 добавлений и 2 удалений

2
.github/workflows/go-test.yml поставляемый
Просмотреть файл

@ -11,4 +11,4 @@ jobs:
go-version: '1.22'
- run: |
make test
name: Run unit tests for go code in pkg/agent
name: Run unit tests for go code in the repository

Просмотреть файл

@ -180,9 +180,12 @@ endif
ginkgoBuild: generate
make -C ./test/e2e ginkgo-build
test:
test: test-node-bootstrapper
go test ./...
test-node-bootstrapper:
pushd node-bootstrapper && go test ./... && popd
.PHONY: test-style
test-style: validate-go validate-shell validate-copyright-headers