Skip to content

fix: correct filename typos (heartbeat, placement) #1

fix: correct filename typos (heartbeat, placement)

fix: correct filename typos (heartbeat, placement) #1

Workflow file for this run

name: dfs-ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Dependencies
run: go mod download
- name: Vet
run: go vet ./...
- name: Tests
run: go test ./...
- name: Race detection
run: go test -race ./...