Skip to content

chore(deps): update dependency open.channelextensions to 9.1.3 #877

chore(deps): update dependency open.channelextensions to 9.1.3

chore(deps): update dependency open.channelextensions to 9.1.3 #877

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET Build PR
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Check formatting with Csharpier
run: |
dotnet tool restore
dotnet csharpier check src/ test/
- name: Restore dependencies
run: dotnet restore MangaIngestWithUpscaling.sln
- name: Build
run: dotnet build --no-restore MangaIngestWithUpscaling.sln /warnaserror
- name: Test (Unit Tests Only)
run: dotnet test --no-build --verbosity normal --settings development.runsettings MangaIngestWithUpscaling.sln