Skip to content

feat: adaptive timeouts, streaming heartbeat, and progress updates fo… #351

feat: adaptive timeouts, streaming heartbeat, and progress updates fo…

feat: adaptive timeouts, streaming heartbeat, and progress updates fo… #351

Workflow file for this run

name: Test
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: go test ./...
- name: Build
run: go build ./cmd/scud/
- name: Vet
run: go vet ./...