Skip to content

Bump xunit from 2.4.2 to 2.9.2 #152

Bump xunit from 2.4.2 to 2.9.2

Bump xunit from 2.4.2 to 2.9.2 #152

Workflow file for this run

name: .NET
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7
6
- name: Install .NET Framework (add MSBuild to Path)
uses: microsoft/setup-msbuild@v1.3
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" test/Amazon.SecretsManager.Extensions.Caching.UnitTests
- name: Codecov
uses: codecov/codecov-action@v3.1.4
with:
directory: test/Amazon.SecretsManager.Extensions.Caching.UnitTests/TestResults