From 800457db50d031051266bb7b233b69b367a1f571 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 31 Jan 2022 22:06:01 +0100 Subject: [PATCH] Require Go 1.13 --- .github/workflows/build.yml | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebf62d9..400d487 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,27 +4,26 @@ jobs: build: strategy: matrix: - go-version: [~1.11, ^1] + go-version: [~1.13, ^1] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} env: GO111MODULE: "on" steps: + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} - - name: Install Go - uses: actions/setup-go@v2 - with: - go-version: ${{ matrix.go-version }} + - name: Checkout code + uses: actions/checkout@v2 - - name: Checkout code - uses: actions/checkout@v2 + - name: Download Go modules + run: go mod download - - name: Download Go modules - run: go mod download + - name: Build + run: go build -v ./... - - name: Build - run: go build -v ./... - - - name: Test - run: go test ./... - if: matrix.platform != 'windows-latest' + - name: Test + run: go test ./... + if: matrix.platform != 'windows-latest'