Skip to content

Commit

Permalink
Add Go 1.14 to build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
sagikazarmark committed May 9, 2020
1 parent 3856c05 commit 13df721
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.11', '1.12', '1.13']
go: ['1.11', '1.12', '1.13', '1.14']
env:
VERBOSE: 1
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}

- name: Checkout code
uses: actions/checkout@v2

- name: Run tests
run: make test

- name: Run linter
- name: Lint
run: make lint

- name: Test
run: make test

0 comments on commit 13df721

Please sign in to comment.