Skip to content

Bump Azure.Identity from 1.7.0 to 1.10.2 in /src/Functions/PublicFunction #4

Bump Azure.Identity from 1.7.0 to 1.10.2 in /src/Functions/PublicFunction

Bump Azure.Identity from 1.7.0 to 1.10.2 in /src/Functions/PublicFunction #4

Workflow file for this run

name: Build Code
on:
push:
branches: [ "main" ]
paths: [ "src/**" ]
pull_request:
branches: [ "main" ]
paths: [ "src/**" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/Functions
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal