Merge pull request #9748 from cli/wm/add-acceptance-makefile

Add acceptance task to makefile
This commit is contained in:
William Martin 2024-10-15 19:11:16 +01:00 committed by GitHub
commit 02599796bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,11 +38,16 @@ completions: bin/gh$(EXE)
bin/gh$(EXE) completion -s fish > ./share/fish/vendor_completions.d/gh.fish
bin/gh$(EXE) completion -s zsh > ./share/zsh/site-functions/_gh
# just a convenience task around `go test`
# just convenience tasks around `go test`
.PHONY: test
test:
go test ./...
# For more information, see https://github.com/cli/cli/blob/trunk/acceptance/README.md
.PHONY: acceptance
acceptance:
go test -tags acceptance ./acceptance
## Site-related tasks are exclusively intended for use by the GitHub CLI team and for our release automation.
site: