Skip to content

simplifying the testing code. will introduce tapper only when used at… #21

simplifying the testing code. will introduce tapper only when used at…

simplifying the testing code. will introduce tapper only when used at… #21

Workflow file for this run

name: dev
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21.x'
- name: Run tests
run: make test
- name: Run code coverage
run: make cover
- name: Upload code coverage file
uses: actions/upload-artifact@v4
with:
name: code-coverage-html-file
path: ./out/var/coverage.html