feat: extra protocol information (#60) #98
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: main | |
| tags: v* | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.22.4" | |
| - name: Install Task | |
| uses: arduino/setup-task@v2 | |
| - name: Install dependencies | |
| run: task dep | |
| - name: Run linters | |
| run: task vet | |
| - name: Run tests | |
| run: task test |