feat: add notnull constraint to TPayload in logging methods and test … #62
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| tags: | |
| - "*" | |
| permissions: | |
| checks: write | |
| pull-requests: write | |
| jobs: | |
| validate-version: | |
| name: 🧐 Validate Version | |
| uses: ./.github/workflows/validate-version-job.yml | |
| if: startsWith(github.ref, 'refs/tags/') | |
| 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: [validate-version, test] | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| dotnet-version: "10.0.x" | |
| secrets: inherit |