Skip to content

update coverage.yml

update coverage.yml #4

Workflow file for this run

name: Testing
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.6", "1.9", "1.10", "1.22"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go test .
- name: Test with the Go CLI
run: go test