Skip to content

drop 18, add 1.20 & 1.21 #28

drop 18, add 1.20 & 1.21

drop 18, add 1.20 & 1.21 #28

Workflow file for this run

on:
- push
- pull_request
name: Test
jobs:
test:
strategy:
matrix:
go-version:
- 1.19.x
- 1.20.x
- 1.21.x
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...