add matrix strategy
This commit is contained in:
parent
74e0ced175
commit
aae5025f27
73
.github/workflows/go-workflow-1.yml
vendored
73
.github/workflows/go-workflow-1.yml
vendored
@ -6,20 +6,26 @@ on:
|
|||||||
master
|
master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test1:
|
test:
|
||||||
name: Test @ Go 1.11
|
strategy:
|
||||||
runs-on: ubuntu-latest
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
go: [1.11, 1.12, 1.13]
|
||||||
|
name: Test on ${{ matrix.os }} @ Go ${{ matrix.go }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
env:
|
env:
|
||||||
GO111MODULE: on
|
GO111MODULE: on
|
||||||
GOPROXY: https://proxy.golang.org
|
GOPROXY: https://proxy.golang.org
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go 1.11
|
- name: Set up Go ${{ matrix.go }}
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v1
|
||||||
with:
|
with:
|
||||||
go-version: 1.11
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
@ -29,63 +35,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
|
ls -la
|
||||||
go run build.go vet
|
go run build.go vet
|
||||||
go run build.go test
|
go run build.go test
|
||||||
go run build.go gfmrun docs/v2/manual.md
|
go run build.go gfmrun docs/v2/manual.md
|
||||||
go run build.go toc docs/v2/manual.md
|
go run build.go toc docs/v2/manual.md
|
||||||
test2:
|
|
||||||
name: Test @ Go 1.12
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
GO111MODULE: on
|
|
||||||
GOPROXY: https://proxy.golang.org
|
|
||||||
steps:
|
|
||||||
- name: Set up Go 1.12
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: 1.12
|
|
||||||
|
|
||||||
- name: Checkout Code
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: |
|
|
||||||
go get github.com/urfave/gfmrun/cmd/gfmrun
|
|
||||||
go get golang.org/x/tools/cmd/goimports
|
|
||||||
npm install markdown-toc
|
|
||||||
|
|
||||||
- name: Run Tests
|
|
||||||
run: |
|
|
||||||
go run build.go vet
|
|
||||||
go run build.go test
|
|
||||||
go run build.go gfmrun docs/v2/manual.md
|
|
||||||
go run build.go toc docs/v2/manual.md
|
|
||||||
test3:
|
|
||||||
name: Test @ Go 1.13
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
GO111MODULE: on
|
|
||||||
GOPROXY: https://proxy.golang.org
|
|
||||||
steps:
|
|
||||||
- name: Set up Go 1.13
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: 1.13
|
|
||||||
|
|
||||||
- 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
|
|
||||||
npm install markdown-toc
|
|
||||||
|
|
||||||
- name: Run Tests
|
|
||||||
run: |
|
|
||||||
go run build.go vet
|
|
||||||
go run build.go test
|
|
||||||
go run build.go gfmrun docs/v2/manual.md
|
|
||||||
go run build.go toc docs/v2/manual.md
|
|
Loading…
Reference in New Issue
Block a user