Skip to content

test: Add integration tests to exercise the Lambda subscriptions #533

test: Add integration tests to exercise the Lambda subscriptions

test: Add integration tests to exercise the Lambda subscriptions #533

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Setup .NET Core 6.0
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 --filter ".UnitTests"