Skip to content

Remove FluentAssertion and update nuget packages #31

Remove FluentAssertion and update nuget packages

Remove FluentAssertion and update nuget packages #31

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Pull dependency
run: git submodule update --init
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --filter 'FullyQualifiedName!~Neo.FileStorage.API.UnitTests.FSClient.UT_Client&FullyQualifiedName!~Neo.FileStorage.API.UnitTests.UT_ControlClient' --no-build --verbosity normal