Skip to content

build: Remove NuGet.config entirely #716

build: Remove NuGet.config entirely

build: Remove NuGet.config entirely #716

Workflow file for this run

name: Tests
on:
push:
branches:
- 'r4/master'
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build with dotnet
run: dotnet build src/Spark.Web/Spark.Web.csproj -c Release
- name: Unit tests
run: |
dotnet test "./src/Spark.Engine.Test/Spark.Engine.Test.csproj"
dotnet test "./src/Spark.Mongo.Tests/Spark.Mongo.Tests.csproj"
dotnet test "./src/Spark.Store.Sql.Tests/Spark.Store.Sql.Tests.csproj"