Bump SkiaSharp from 2.80.3 to 2.88.6 in /src/Spectrogram #72
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
# Build & Test | |
# Versions: .NET Core 3.1.x, 5.0.x | |
# Trigger: pull request, push | |
# actions/checkout@v2 and actions/setup-dotnet@v1 are community actions that will get your code and setup dotnet | |
name: Build & Test .NET Core | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.x' | |
- name: Install dependencies | |
run: dotnet restore ./src/SimTuning.WPF.App/SimTuning.WPF.App.csproj | |
- name: Build netcoreapp3.1 | |
run: dotnet build --configuration Release --framework netcoreapp3.1 --no-restore ./src/SimTuning.WPF.App/SimTuning.WPF.App.csproj | |
- name: Build net5.0 | |
run: dotnet build --configuration Release --framework net5.0-windows --no-restore ./src/SimTuning.WPF.App/SimTuning.WPF.App.csproj | |
- name: Test | |
run: dotnet test --no-restore --verbosity normal ./src/SimTuning.Test/SimTuning.Test.csproj |