Skip to content

change: update test job name for clarity and specify project in run c… #10

change: update test job name for clarity and specify project in run c…

change: update test job name for clarity and specify project in run c… #10

Workflow file for this run

name: Build
on:
push:
branches:
- "**"
permissions:
checks: write
pull-requests: write
jobs:
validate-version:
uses: ./.github/workflows/validate-version-job.yml
if: startsWith(github.ref, 'refs/tags/')
build:
name: 🏗️ Build Nuget Package
uses: ./.github/workflows/build.yml
with:
dotnet-version: '10.0.x'
test:
name: 👩🏻‍🔬 Run Tests
needs: build
uses: ./.github/workflows/test.yml
with:
dotnet-version: '10.0.x'
tests: '["LoggerTests"]'
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'