Skip to content

fix(worker): debounce outages behind a consecutive-failure threshold #48

fix(worker): debounce outages behind a consecutive-failure threshold

fix(worker): debounce outages behind a consecutive-failure threshold #48

Workflow file for this run

name: build
on:
push:
branches: [main]
paths:
- "src/**"
- "tests/**"
- "config/**"
- "db/migrations/**"
- "bump.sln"
- "global.json"
- ".github/workflows/build.yml"
pull_request:
paths:
- "src/**"
- "tests/**"
- "config/**"
- "db/migrations/**"
- "bump.sln"
- "global.json"
- ".github/workflows/build.yml"
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore
run: dotnet restore bump.sln
- name: Build
run: dotnet build bump.sln --configuration Release --no-restore
- name: Test
run: dotnet test bump.sln --configuration Release --no-build