Skip to content

refactor MemoryStorageConnection to not inlcude static fields and ret… #3

refactor MemoryStorageConnection to not inlcude static fields and ret…

refactor MemoryStorageConnection to not inlcude static fields and ret… #3

Workflow file for this run

name: build-ci
on: [push, pull_request]
jobs:
build-lib:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal