Browse Source

Build & test against Go 1.13 and latest Go (#346)

pull/347/head
Christian Muehlhaeuser 5 years ago committed by GitHub
parent
commit
6976dffdfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/buildmaster.yaml
  2. 2
      .github/workflows/test.yaml

2
.github/workflows/buildmaster.yaml

@ -11,7 +11,7 @@ jobs: @@ -11,7 +11,7 @@ jobs:
build:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
go-version: [~1.13, ^1]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}

2
.github/workflows/test.yaml

@ -16,7 +16,7 @@ jobs: @@ -16,7 +16,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: '1.14.x'
go-version: "^1"
- name: Run tests
run: go test ./...
Loading…
Cancel
Save