Skip to content

test: add test for SetCommands #6

test: add test for SetCommands

test: add test for SetCommands #6

Workflow file for this run

name: Test and coverage
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Try Build
run: make
- name: Unit Tests
run: make unit
- name: Coverage Tests
run: make cov
- name: Bechmark Tests
run: make bench
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.txt