Skip to content

chore: automation tools (#4) #9

chore: automation tools (#4)

chore: automation tools (#4) #9

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- main
- "release/*"
pull_request:
jobs:
test:
name: Unit
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '~1.21'
check-latest: true
- run: go version
- run: go mod download
- run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3