Skip to content

Update README.md (#22) #86

Update README.md (#22)

Update README.md (#22) #86

Workflow file for this run

name: Go
on: [push]
jobs:
test:
name: Test
strategy:
matrix:
go_version: [1.7, 1.8, 1.9, "1.10", 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, "1.20", "1.21"]
os: [ubuntu-latest, windows-latest, macos-11]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -v --race ./...