Skip to content

chore: automation tools #8

chore: automation tools

chore: automation tools #8

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