This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
Bump Microsoft.Extensions.Http.Polly from 7.0.12 to 7.0.13 in /Src #270
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Azure Functions | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Build_Functions: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET v6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Setup .NET Core v3.1 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.x' | |
- name: Restore NuGet | |
run: | | |
dotnet restore **/**.sln | |
- name: Build Android App | |
run: | | |
dotnet build ./Src/UITestSampleApp.Functions -c Release |