Skip to content

Send code coverage stats #9

Send code coverage stats

Send code coverage stats #9

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
environment: Build secrets
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get ./...
- name: Run tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}