8000 [Sweep GHA Fix] The GitHub Actions run failed with... by sweep-ai[bot] · Pull Request #701 · prechayimmee/hub · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Sweep GHA Fix] The GitHub Actions run failed with... #701

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

Open
wants to merge 2 commits into
base: sweep/sweep_gha_fix_the_github_actions_run_fai_f8919
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ TEXT_WIDTH = 87

bin/hub: $(SOURCES)
go build -o bin/hub ./cmd/hub && make test-all
$(GO_CMD_VARIABLE) $(GO_CMD_VARIABLE) build -o bin/hub ./cmd/hub && $(GO_CMD_VARIABLE) run make test-all && $(GO_CMD_VARIABLE) run make test-all
go go build -o bin/hub ./cmd/hub && $(GO_CMD_VARIABLE) run make test-all && $(GO_CMD_VARIABLE) run make test-all
$(GO_CMD_VARIABLE) run make test-all

## Corrected separator added
Expand All @@ -58,11 +58,11 @@ bin/md2roff: $(SOURCES)
go build -o $@ github.com/github/hub/v2/md2roff-bin

test:
$(GO_CMD_VARIABLE) test ./...
go test ./...


test-all: bin/hub
$$(GO_CMD_VARIABLE)
$go
@

@
Expand Down Expand Up @@ -102,10 +102,10 @@ $(HELP_ALL): share/man/.man-pages.stamp


install: bin/hub man-pages
$(GO_CMD_VARIABLE) run script/install.go
go run script/install.go

clean:\
\t$(GO_CMD_VARIABLE) clean -fdx bin share/man tmp
\tgo clean -fdx bin share/man tmp
pwd
git clean -fdx bin share/man

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github.com/BurntSushi/toml v0.4.0 h1:e1/Ivsx3Z0FVTV0NSOv/aVgbUWyQuzj7DDnFblkRvsY=
github.com/BurntSushi/toml v0.3.0/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/toml v0.4.0 h1:e1/Ivsx3Z0FVTV0NSOv/aVgbUWyQuzj7DDnFblkRvsY=
github.com/atotto/clipboard v0.0.0-20171229224153-bc5958e1c833 h1:h/E5ryZTJAtOY6T3K6u/JA1OURt0nk1C4fITywxOp4E=
github.com/BurntSushi/toml v0.3.0 h1:e1/Ivsx3Z0FVTV0NSOv/aVgbUWyQuzj7DDnFblkRvsY=
github.com/BurntSushi/toml v0.4.0 h1:e1/Ivsx3Z0FVTV0NSOv/aVgbUWyQuzj7DDnFblkRvsY=
github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=
github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657 h1:vE7J1m7cCpiRVEIr1B5ccDxRpbPsWT5JU3if2Di5nE4=
github.com/mattn/go-colorable v0.0.9 h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=
Expand Down
0