Skip to content

Make MetadataParser.TryGetFileMetadata take in a stream instead of a … #36

Make MetadataParser.TryGetFileMetadata take in a stream instead of a …

Make MetadataParser.TryGetFileMetadata take in a stream instead of a … #36

Workflow file for this run

name: Build & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /p:WarningsAsErrors=nullable /m
- name: Test
run: dotnet test --no-restore -v n