add workflow for legacy v1 branch and add windows build
This commit is contained in:
parent
fc741e590b
commit
243a978ffa
54
.github/workflows/v1.yml
vendored
Normal file
54
.github/workflows/v1.yml
vendored
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
name: Run Tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
v1
|
||||||
|
|
||||||
|
env:
|
||||||
|
GO111MODULE: on
|
||||||
|
GOPROXY: https://proxy.golang.org
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
go: [1.11, 1.12, 1.13]
|
||||||
|
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- name: Set up Go ${{ matrix.go }}
|
||||||
|
uses: actions/setup-go@v1
|
||||||
|
with:
|
||||||
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
|
- name: Set GOPATH and PATH
|
||||||
|
run: |
|
||||||
|
echo "##[set-env name=GOPATH;]$(dirname $GITHUB_WORKSPACE)"
|
||||||
|
echo "##[add-path]$(dirname $GITHUB_WORKSPACE)/bin"
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
go get github.com/urfave/gfmrun/cmd/gfmrun
|
||||||
|
go get golang.org/x/tools/cmd/goimports
|
||||||
|
go mod tidy
|
||||||
|
npm install markdown-toc
|
||||||
|
|
||||||
|
- name: Run Tests
|
||||||
|
run: |
|
||||||
|
ls -la
|
||||||
|
go run build.go vet
|
||||||
|
go run build.go test
|
||||||
|
go run build.go gfmrun docs/v1/manual.md
|
||||||
|
go run build.go toc docs/v1/manual.md
|
||||||
|
|
||||||
|
- name: Send Coverage Report
|
||||||
|
if: success()
|
||||||
|
run: bash <(curl -s https://codecov.io/bash)
|
@ -13,7 +13,7 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
go: [1.11, 1.12, 1.13]
|
go: [1.11, 1.12, 1.13]
|
||||||
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
|
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
Loading…
Reference in New Issue
Block a user