Skip to content

chore(deps): update dependency open.channelextensions to 9.1.2 (#279) #355

chore(deps): update dependency open.channelextensions to 9.1.2 (#279)

chore(deps): update dependency open.channelextensions to 9.1.2 (#279) #355

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 Main
on:
push:
branches: ["main"]
paths:
- "src/MangaIngestWithUpscaling/**"
- "src/MangaIngestWithUpscaling.Shared/**"
- "MangaIngestWithUpscaling.sln"
- "Dockerfile"
- "rocm.Dockerfile"
- "remoteonly.Dockerfile"
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: Restore dependencies
run: dotnet restore MangaIngestWithUpscaling.sln
- name: Build
run: dotnet build --no-restore MangaIngestWithUpscaling.sln /warnaserror
- name: Test shared
run: dotnet test --no-build --verbosity normal test/MangaIngestWithUpscaling.Shared.Tests/MangaIngestWithUpscaling.Shared.Tests.csproj
- name: Test server
run: dotnet test --no-build --verbosity normal test/MangaIngestWithUpscaling.Tests/MangaIngestWithUpscaling.Tests.csproj
- name: Test server UI
run: dotnet test --no-build --verbosity normal test/MangaIngestWithUpscaling.Tests.UI/MangaIngestWithUpscaling.Tests.UI.csproj