Skip to content

refactor(stream-handling): optimize stream management #20

refactor(stream-handling): optimize stream management

refactor(stream-handling): optimize stream management #20

name: pull request
on:
pull_request:
branches: [ master ]
paths:
- '**.cs'
- '**.csproj'
env:
DOTNET_VERSION: '6.0' # set this to the dot net version to use
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: |
dotnet build --no-restore
- name: Test
run: |
dotnet test --no-restore --verbosity normal