Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Allow manual CI runs. #3

Allow manual CI runs.

Allow manual CI runs. #3

Workflow file for this run

name: .NET CI
permissions:
contents: read
on:
workflow_dispatch:
push:
branches: '**'
paths:
- 'src/**'
- '.editorconfig'
jobs:
build:
strategy:
fail-fast: false
matrix:
configuration: [Debug, Release]
uses: BugDotNet/.github/.github/workflows/dotnet_ci_build.yml@main
with:
configuration: ${{ matrix.configuration }}
test:
strategy:
fail-fast: false
matrix:
configuration: [Debug, Release]
uses: BugDotNet/.github/.github/workflows/dotnet_ci_test.yml@main
with:
configuration: ${{ matrix.configuration }}
lint:
uses: BugDotNet/.github/.github/workflows/dotnet_ci_lint.yml@main
pack:
uses: BugDotNet/.github/.github/workflows/dotnet_ci_pack.yml@main