Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
number571 committed Oct 18, 2024
1 parent 9021321 commit f4473c2
Show file tree
Hide file tree
Showing 3 changed files with 1,005 additions and 1,003 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ jobs:
steps:
- name: Applications installing...
run: sudo apt-get update && sudo apt-get install -y wget gcc make git
- name: Golang installing v1.23...
run: wget https://go.dev/dl/go1.23.0.linux-amd64.tar.gz && tar -C /opt -xzf go1.23.0.linux-amd64.tar.gz
- name: Set up Go 1.23.0
uses: actions/setup-go@v2
with:
go-version: ^1.23.0
- name: Go-peer version
run: export PATH=$PATH:/opt/go/bin && go version
run: export PATH=$PATH:$(go env GOPATH)/bin && go version
- name: Go-peer downloading...
run: git clone --depth=1 https://github.com/number571/go-peer.git
- name: Go-peer deps installing...
run: export PATH=$PATH:/opt/go/bin && make install-deps -C go-peer
run: export PATH=$PATH:$(go env GOPATH)/bin && make install-deps -C go-peer
- name: Go-peer lint/test running...
run: export PATH=$PATH:/opt/go/bin && make -C go-peer
run: export PATH=$PATH:$(go env GOPATH)/bin && make -C go-peer
Loading

0 comments on commit f4473c2

Please sign in to comment.