Skip to content

Bump SixLabors.ImageSharp from 3.0.1 to 3.1.3 in /src/McSkin.Cli #10

Bump SixLabors.ImageSharp from 3.0.1 to 3.1.3 in /src/McSkin.Cli

Bump SixLabors.ImageSharp from 3.0.1 to 3.1.3 in /src/McSkin.Cli #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
dotnet: ['7.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release --no-build --verbosity normal