Skip to content

Bump Azure.Identity from 1.3.0 to 1.10.2 in /src #11

Bump Azure.Identity from 1.3.0 to 1.10.2 in /src

Bump Azure.Identity from 1.3.0 to 1.10.2 in /src #11

name: .NET and Core Build with Tests
on:
push:
# branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
dotnet: [3.1.x]
env:
config: 'Debug'
AZURE_CONFIG_DIR: /dev/null
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet}}
- name: Restore dependencies
run: dotnet restore KeyVault-Rotation-Csharp.sln
- name: Build
run: dotnet build KeyVault-Rotation-Csharp.sln --no-restore
- name: Test
run: dotnet test KeyVault-Rotation-Csharp.sln --no-build --verbosity normal --logger "trx" --logger "console;verbosity=detailed" --collect:"XPlat Code Coverage"