Bump Microsoft.Extensions.Caching.Memory from 8.0.0 to 8.0.1 in /src/RapidCMS.Core.Tests #74
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 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
include-prerelease: true | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.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 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 |