Skip to content

Break the relationship betwen writer and subscription #34

Break the relationship betwen writer and subscription

Break the relationship betwen writer and subscription #34

Workflow file for this run

name: Build Solutions
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
solution:
- '**/*.sln'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ${{ matrix.solution }}
- name: Build
run: dotnet build ${{ matrix.solution }} --configuration Release --no-restore