From 13df72109047b6ae9c907bce81e327265d6d8a9c Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Sat, 9 May 2020 11:42:39 +0200 Subject: [PATCH] Add Go 1.14 to build targets --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4b85ea..d0718af 100644 --- 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