Trim repo

This commit is contained in:
世界 2022-05-25 12:08:02 +08:00
parent 8697b84d59
commit d4b1e219c0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
89 changed files with 121 additions and 10987 deletions

View file

@ -21,9 +21,13 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Golang
- name: Get latest go version
id: version
run: |
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18.1
go-version: ${{ steps.version.outputs.go_version }}
- name: Build
run: make
run: go build -v ./...