Merge pull request #52 from zchee/ci-support-multiversion

Support multiple go version
This commit is contained in:
Masaaki Goshima 2020-11-16 23:51:37 +09:00 committed by GitHub
commit e88d0248b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

View File

@ -1,17 +1,18 @@
name: Go
on: [push]
on: [push, pull_request]
jobs:
build:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
go-version: [ "1.13", "1.14", "1.15" ]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
@ -19,3 +20,6 @@ jobs:
- name: Test
run: go test -v ./
- name: Test with race detector
run: go test -v -race ./