Skip to content

deps: Bump Verify and Verify.TUnit #131

deps: Bump Verify and Verify.TUnit

deps: Bump Verify and Verify.TUnit #131

Workflow file for this run

name: Build
on:
push:
branches:
- "**"
tags:
- "*"
permissions:
checks: write
pull-requests: write
jobs:
build:
name: 🏗️ Build Nuget Package
uses: ./.github/workflows/build-job.yml
with:
dotnet-version: "10.0.x"
use-local-projects: false
create-nuget-package: true
test:
name: ✅ Run Tests
uses: ./.github/workflows/test-job.yml
needs: [build]
with:
dotnet-version: "10.0.x"
publish-nuget:
name: 📦 Publish Nuget Package
uses: ./.github/workflows/publish-nuget-job.yml
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
with:
dotnet-version: "10.0.x"
secrets: inherit