Skip to content

Commit

Permalink
task: Updating the repo
Browse files Browse the repository at this point in the history
Changing the github instructions to run tests on Go 1.16 and 1.17
  • Loading branch information
paganotoni committed Nov 3, 2021
1 parent dd56a75 commit 5c6244f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Tests
on:
push:
branches:
- master
- main
pull_request:
jobs:

Expand All @@ -11,16 +11,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
go-version: [1.16.x, 1.17.x]
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Test
run: |
go mod tidy -v
go test -race ./...

0 comments on commit 5c6244f

Please sign in to comment.