Skip to content

CI to test in 1.21 and 1.22 #122

CI to test in 1.21 and 1.22

CI to test in 1.21 and 1.22 #122

Workflow file for this run

name: cover
on: [push]
permissions:
contents: read
jobs:
test:
name: Upload coverage
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache-dependency-path: '**/go.sum'
- name: Download dependencies
run: go mod download
- name: Make coverage
run: make cover
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v3