Skip to content

feat: Send email through Azure Communication Services #125

feat: Send email through Azure Communication Services

feat: Send email through Azure Communication Services #125

Workflow file for this run

name: .NET Core
on: [push]
env:
DOTNET_VERSION: '6.0.x'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Setup NuGet
uses: nuget/setup-nuget@v1
- name: Restore NuGet packages
run: nuget restore Surfrider.PlasticOrigins.Backend.Mobile.sln
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test ./Surfrider.PlasticOrigins.Backend.Mobile.sln --configuration Release