fix: Move unit values to have N2k defaults be zero-value #126
Workflow file for this run
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tool Versions | |
uses: jdx/mise-action@v2 | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout=5m | |
- name: lintroller | |
run: go run github.com/getoutreach/lintroller/cmd/[email protected] -config lintroller.yaml ./... | |
test: | |
name: go test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tool Versions | |
uses: jdx/mise-action@v2 | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_TOKEN }} | |
with: | |
coverageCommand: make test | |
coverageLocations: c.out:gocov | |
prefix: github.com/boatkit-io/tugboat |