This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
Bump Microsoft.Azure.Functions.Worker.Sdk from 1.14.1 to 1.15.0 in /Src #261
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 |