Skip to content

TECH Add test stubs to enforce counting of not covered files #79

TECH Add test stubs to enforce counting of not covered files

TECH Add test stubs to enforce counting of not covered files #79

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.21
- name: Test
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}