Skip to content

Commit

Permalink
Adding 1.16.x and 1.17.x tests to matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjivesterby committed Sep 29, 2021
1 parent 5945c78 commit 33e1d88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Expand Up @@ -11,15 +11,15 @@ jobs:
name: Test and lint
strategy:
matrix:
go-version: [1.x, 1.15.x, 1.14.x]
go-version: [1.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: ${{ matrix.go-version }}

# Caching go modules to speed up the run
- uses: actions/cache@v2
Expand Down
1 change: 1 addition & 0 deletions request_context.go
@@ -1,3 +1,4 @@
//go:build go1.13
// +build go1.13

// This file provides glue to use Context in `http.Request` with
Expand Down
1 change: 1 addition & 0 deletions request_legacy.go
@@ -1,3 +1,4 @@
//go:build !go1.13
// +build !go1.13

// This file provides glue to use Context in `http.Request` with
Expand Down

0 comments on commit 33e1d88

Please sign in to comment.