feat: implemented pipelines (#2) #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Framework | |
on: [push] | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test Mediator.DependencyInjection | |
run: dotnet test --no-restore --verbosity normal --framework net461 tests/Mediator.DependencyInjection.Tests/Mediator.DependencyInjection.Tests.csproj |