feat: Allow PR checks on dev branch and standardize dotnet version formatting

This commit is contained in:
HueByte
2026-02-19 11:01:11 +01:00
parent efc6aa8a02
commit 7952c13c2b
+3 -3
View File
@@ -2,7 +2,7 @@ name: PR Check
on:
pull_request:
branches: [master]
branches: [master, dev]
jobs:
lint-markdown:
@@ -23,7 +23,7 @@ jobs:
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
dotnet-version: "10.0.x"
- name: Check formatting
run: dotnet format src/EchoHub.slnx --verify-no-changes --verbosity diagnostic
@@ -52,7 +52,7 @@ jobs:
if: steps.changes.outputs.src_changed == 'true'
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
dotnet-version: "10.0.x"
- name: Cache NuGet packages
if: steps.changes.outputs.src_changed == 'true'