Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,17 @@ jobs:
use-local-projects: false
create-nuget-package: true

build-against-sources:
name: 🏗️ Build Against Sources
uses: ./.github/workflows/build-job.yml
with:
dotnet-version: "10.0.x"
use-local-projects: true
create-nuget-package: false

test:
name: ✅ Run Tests
uses: ./.github/workflows/test-job.yml
needs: [build, build-against-sources]
needs: [build]
with:
dotnet-version: "10.0.x"

publish-nuget:
name: 📦 Publish Nuget Package
uses: ./.github/workflows/publish-nuget-job.yml
needs: [test]
needs: [test, validate-version]
if: startsWith(github.ref, 'refs/tags/')
with:
dotnet-version: "10.0.x"
Expand Down
Loading