Skip to content

Changed new Persistent Subscription getters to .NET properties where … #153

Changed new Persistent Subscription getters to .NET properties where …

Changed new Persistent Subscription getters to .NET properties where … #153

Workflow file for this run

name: CI
on: [push, pull_request]
defaults:
run:
working-directory: src
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'windows-latest' ]
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal