Skip to content

Buffer improvements #75

Buffer improvements

Buffer improvements #75

Workflow file for this run

name: Build & Test [.NET Core]
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3.0.0
with:
dotnet-version: |
6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal