clash/.github/workflows/go.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2019-08-15 03:40:40 +00:00
name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2019-10-14 02:40:00 +00:00
- name: Setup Go
2020-06-04 02:38:30 +00:00
uses: actions/setup-go@v2
2019-08-15 03:40:40 +00:00
with:
2020-08-12 05:47:50 +00:00
go-version: 1.15.x
2019-08-15 03:40:40 +00:00
- name: Check out code into the Go module directory
2020-06-04 02:38:30 +00:00
uses: actions/checkout@v2
2019-11-06 04:05:18 +00:00
- name: Cache go module
2020-06-04 02:38:30 +00:00
uses: actions/cache@v2
2019-11-06 04:05:18 +00:00
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
2019-08-15 03:40:40 +00:00
2020-08-25 14:32:23 +00:00
- name: Get dependencies, run test and static check
2019-08-15 03:40:40 +00:00
run: |
go test ./...
2020-08-25 14:32:23 +00:00
go vet ./...
go get -u honnef.co/go/tools/cmd/staticcheck
staticcheck -- $(go list ./...)
2019-10-14 02:40:00 +00:00
- name: Build
if: startsWith(github.ref, 'refs/tags/')
env:
NAME: clash
BINDIR: bin
run: make -j releases
- name: Upload Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: bin/*
draft: true
prerelease: true