From 2479f41d30cac42555fb8f13163ba58a55beb29e Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Thu, 23 Jul 2020 11:47:34 +0900 Subject: [PATCH] ci(github-actions): add go v1.14 (#262) --- .github/workflows/go.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b2fcea2b..1b3c7707 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,7 +16,11 @@ jobs: strategy: matrix: - go-version: ['1.11', '1.12', '1.13'] + go-version: + - '1.11' + - '1.12' + - '1.13' + - '1.14' steps: - uses: actions/checkout@v2 @@ -40,7 +44,7 @@ jobs: mkdir -p cover go test -race -coverprofile=coverage.txt -covermode=atomic - - uses: codecov/codecov-action@v1.0.2 + - uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }}