fix: fix default values #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- uses: actions/setup-go@v4.0.1 | |
with: | |
go-version: '1.21' | |
- name: build binary | |
run: make build | |
- name: run all tests | |
run: make tests |