Skip to content

Commit

Permalink
add env and fix url for golang.org
Browse files Browse the repository at this point in the history
  • Loading branch information
asahasrabuddhe committed Dec 1, 2019
1 parent e4318de commit 74e0ced
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 70 deletions.
76 changes: 71 additions & 5 deletions .github/workflows/go-workflow-1.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,87 @@
name: v2 Test @ Go 1.11
name: Build and Test

on:
pull_request:
branches:
master

jobs:
test:
name: Build & Test
test1:
name: Test @ Go 1.11
runs-on: ubuntu-latest
env:
GO111MODULE: on
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go 1.11
uses: actions/setup-go@v1
with:
go-version: 1.11

- 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
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/x/tools/cmd/goimports
go get golang.org/x/tools/cmd/goimports
npm install markdown-toc
go mod tidy
- name: Run Tests
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.orig
node_modules/
vendor
.idea
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

29 changes: 0 additions & 29 deletions appveyor.yml

This file was deleted.

0 comments on commit 74e0ced

Please sign in to comment.