Make cache on push

This commit is contained in:
世界 2022-05-25 14:17:15 +08:00
parent d4b1e219c0
commit 53c607b13f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -30,4 +30,11 @@ jobs:
with:
go-version: ${{ steps.version.outputs.go_version }}
- name: Build
run: go build -v ./...
run: |
version=`git rev-parse HEAD`
mkdir build
pushd build
go mod init build
go get -v github.com/sagernet/sing@$version
popd
go build -v ./...