Skip to content

ci: go test: update min go version to 1.16.x for io/ioutil deprecation #11

ci: go test: update min go version to 1.16.x for io/ioutil deprecation

ci: go test: update min go version to 1.16.x for io/ioutil deprecation #11

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.16.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Run tests
run: go test -v -covermode=count ./...