2019-08-15 11:40:40 +08:00
|
|
|
name: Go
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2019-10-14 10:40:00 +08:00
|
|
|
- name: Setup Go
|
2020-06-04 10:38:30 +08:00
|
|
|
uses: actions/setup-go@v2
|
2019-08-15 11:40:40 +08:00
|
|
|
with:
|
2020-03-01 01:48:08 +08:00
|
|
|
go-version: 1.14.x
|
2019-08-15 11:40:40 +08:00
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2020-06-04 10:38:30 +08:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2019-11-06 12:05:18 +08:00
|
|
|
- name: Cache go module
|
2020-06-04 10:38:30 +08:00
|
|
|
uses: actions/cache@v2
|
2019-11-06 12:05:18 +08:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2019-08-15 11:40:40 +08:00
|
|
|
|
2019-11-06 12:05:18 +08:00
|
|
|
- name: Get dependencies and run test
|
2019-08-15 11:40:40 +08:00
|
|
|
run: |
|
|
|
|
go test ./...
|
2019-10-14 10:40:00 +08: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
|