Skip to content

Fix bug where Extract with an "Any" network would throw. Also fix an … #12

Fix bug where Extract with an "Any" network would throw. Also fix an …

Fix bug where Extract with an "Any" network would throw. Also fix an … #12

Workflow file for this run

name: Test
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
- name: Restore dependencies
run: dotnet restore
- name: Run tests
run: dotnet test --no-restore