Skip to content

Install the CodeSee workflow. Learn more at https://docs.codesee.io #28

Install the CodeSee workflow. Learn more at https://docs.codesee.io

Install the CodeSee workflow. Learn more at https://docs.codesee.io #28

Workflow file for this run

name: Go
on:
push:
branches: [ '*' ]
tags: [ 'v*' ]
pull_request:
branches: [ '*' ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "1.19.x", "1.20.x" ]
include:
- go: 1.20.x
latest: true
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
cache: true
cache-dependency-path: '**/go.sum'
- name: Download Dependencies
run: |
go mod download
- name: Test
run: make cover
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v3