Skip to content

test: infrastructure for upcoming protocol fixes #1

test: infrastructure for upcoming protocol fixes

test: infrastructure for upcoming protocol fixes #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: build / vet / test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: '1.24.4'
cache: true
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test (race + cover)
run: go test -race -coverprofile=cover.out ./...
- name: Coverage summary
run: go tool cover -func=cover.out
- name: Fuzz smoke (10s)
run: go test -run=^$ -fuzz=FuzzProtocolDecode -fuzztime=10s ./feetech