Skip to content

Commit

Permalink
Require Go 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Jan 31, 2022
1 parent 3203baf commit 800457d
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/build.yml
Expand Up @@ -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'

0 comments on commit 800457d

Please sign in to comment.