Skip to content

arazzo: make the retry sleeper injectable via EngineConfig.SleepFunc #1759

arazzo: make the retry sleeper injectable via EngineConfig.SleepFunc

arazzo: make the retry sleeper injectable via EngineConfig.SleepFunc #1759

Workflow file for this run

name: Build
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
buildWindows:
name: Build Windows
runs-on: blacksmith-4vcpu-windows-2025
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
id: go
- name: Test
run: go test ./...
build:
name: Build Linux
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
id: go
- name: Test with coverage
run: go test -coverprofile=coverage.out ./...
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out
flags: unittests
fail_ci_if_error: false
verbose: true