Skip to content

Bump SkiaSharp from 2.88.3 to 2.88.6 in /src/SciTIF #49

Bump SkiaSharp from 2.88.3 to 2.88.6 in /src/SciTIF

Bump SkiaSharp from 2.88.3 to 2.88.6 in /src/SciTIF #49

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Build and Test
runs-on: windows-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
- name: ✨ Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: 🚚 Restore
run: dotnet restore src
- name: 🛠️ Build
run: dotnet build src --no-restore
- name: 🧪 Test
run: dotnet test src --no-build