Skip to content

Add retry capability to REST client to handle transient errors #3489

Add retry capability to REST client to handle transient errors

Add retry capability to REST client to handle transient errors #3489

Workflow file for this run

name: Gated-Windows
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
build_windows:
runs-on: [windows-latest]
steps:
- uses: actions/checkout@v2
- uses: dorny/[email protected]
id: filter
with:
filters: |
src:
- 'src/**'
- 'test/**'
- 'build/**'
- 'samples/**'
- '*.cmd'
- '*.ps1'
- '**.props'
- '**.csproj'
- '**.targets'
- '*.sh'
- '*.sln'
- name: Update SubModules
run: git submodule update --init --recursive
if: steps.filter.outputs.src == 'true'
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
7.0.x
6.0.x
5.0.x
include-prerelease: true
- name: Test
run: dotnet test
if: steps.filter.outputs.src == 'true'