Skip to content

Export to Google Docs #53

Export to Google Docs

Export to Google Docs #53

Workflow file for this run

name: CI Build
on:
push:
branches: '**'
pull_request:
branches: '**'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
- name: Restore Nuget Package Dependencies
run: dotnet restore recipebook-core.sln
- name: Build Solution
run: dotnet build --configuration Release --no-restore
- name: Run Unit Tests
run: dotnet test --no-restore --verbosity normal
- name: Publish Functions as Artifact
uses: actions/upload-artifact@v4
with:
name: recipebook-functions
path: recipebook.functions/bin/Release/netcoreapp3.1