Skip to content

Bump github.com/cloudflare/goflow/v3 from 3.4.5 to 3.5.0 #100

Bump github.com/cloudflare/goflow/v3 from 3.4.5 to 3.5.0

Bump github.com/cloudflare/goflow/v3 from 3.4.5 to 3.5.0 #100

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go ${{vars.GO_VERSION}}
uses: actions/setup-go@v5
with:
go-version: ${{vars.GO_VERSION}}
id: go
- name: install zmq headers
run: sudo apt-get update && sudo apt-get install -y libzmq3-dev
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Tests
run: make vet unittest test-tidy test-fmt
- name: Build a binary
run: make # not all binaries to help speed up builds
- name: Upload to codecov
uses: codecov/codecov-action@v4