Bump Microsoft.Extensions.Caching.Memory in /source/Lexicala.NET #19
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: Build & Test | |
on: | |
push: | |
paths-ignore: '**.md' | |
# don't run on master because we already have another action for that | |
branches-ignore: master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core 8 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install dependencies | |
run: dotnet restore ./source/Lexicala.NET.sln | |
- name: Build | |
run: dotnet build ./source/Lexicala.NET.sln --configuration Release --no-restore | |
- name: Test | |
run: dotnet test ./source/Lexicala.NET.sln --no-restore --verbosity normal |