Skip to content

feat(idempotency): enhance thread safety with AsyncLocal context and thread-safe configuration #1655

feat(idempotency): enhance thread safety with AsyncLocal context and thread-safe configuration

feat(idempotency): enhance thread safety with AsyncLocal context and thread-safe configuration #1655

Workflow file for this run

name: Build .NET
on:
push:
paths:
- "libraries/**"
branches: [develop]
pull_request:
paths:
- "libraries/**"
branches: [develop]
defaults:
run:
working-directory: ./libraries
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Setup .NET SDK
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # 5.0.1
with:
dotnet-version: |
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /tl
- name: Test & Code Coverage
run: dotnet test --no-restore --filter "Category!=E2E" --collect:"XPlat Code Coverage" --results-directory ./codecov --verbosity normal
- name: Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # 5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
name: codecov-lambda-powertools-dotnet
verbose: true
directory: ./libraries/codecov