Add Go 1.14 to build targets - viper - [fork] go viper port for 9front
(HTM) git clone git@git.drkhsh.at/viper.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 13df72109047b6ae9c907bce81e327265d6d8a9c
(DIR) parent 3856c05f99260a778852dc112cdfc3ea3f0e1a9e
(HTM) Author: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
Date: Sat, 9 May 2020 11:42:39 +0200
Add Go 1.14 to build targets
Diffstat:
M .github/workflows/ci.yml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
---
(DIR) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -12,7 +12,7 @@ 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
@@ -20,15 +20,15 @@ jobs:
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