Skip to content

Bump SixLabors.ImageSharp from 1.0.3 to 2.1.8 in /src/Mazes.Utility #37

Bump SixLabors.ImageSharp from 1.0.3 to 2.1.8 in /src/Mazes.Utility

Bump SixLabors.ImageSharp from 1.0.3 to 2.1.8 in /src/Mazes.Utility #37

Workflow file for this run

name: build-next
on:
push:
branches: [ next ]
pull_request:
branches: [ next ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.100
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov
- name: Update Codecov
uses: codecov/codecov-action@v1