Nuget packages updated #62
Workflow file for this run
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 Core PR | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
include-prerelease: true | |
- name: Build Api Core | |
run: dotnet build --configuration Release ./src/RapidCMS.Api.Core/RapidCMS.Api.Core.csproj | |
- name: Build Api Functions | |
run: dotnet build --configuration Release ./src/RapidCMS.Api.Functions/RapidCMS.Api.Functions.csproj | |
- name: Build Api WebApi | |
run: dotnet build --configuration Release ./src/RapidCMS.Api.WebApi/RapidCMS.Api.WebApi.csproj | |
- name: Build Core | |
run: dotnet build --configuration Release ./src/RapidCMS.Core/RapidCMS.Core.csproj | |
- name: Build ModelMaker | |
run: dotnet build --configuration Release ./src/RapidCMS.ModelMaker/RapidCMS.ModelMaker.csproj | |
- name: Build ModelMaker SourceGenerator EFCore | |
run: dotnet build --configuration Release ./src/RapidCMS.ModelMaker.SourceGenerator.EFCore/RapidCMS.ModelMaker.SourceGenerator.EFCore.csproj | |
- name: Build Repositories | |
run: dotnet build --configuration Release ./src/RapidCMS.Repositories/RapidCMS.Repositories.csproj | |
- name: Build UI | |
run: dotnet build --configuration Release ./src/RapidCMS.UI/RapidCMS.UI.csproj | |
- name: Run Core Tests | |
run: dotnet test ./src/RapidCMS.Core.Tests/RapidCMS.Core.Tests.csproj | |
- name: Run Model Maker Tests | |
run: dotnet test ./src/RapidCMS.ModelMaker.SourceGenerator.EFCore.Tests/RapidCMS.ModelMaker.SourceGenerator.EFCore.Tests.csproj |