Test build
Some checks failed
Build .NET Project / build (push) Failing after 8s

This commit is contained in:
2025-11-19 12:20:15 -05:00
parent da85d46718
commit 0eaeb32733

View File

@@ -9,15 +9,16 @@ jobs:
build:
runs-on: arm64 # Use the ARM64 runner
steps:
- name: Checkout code
uses: actions/checkout@v3 # Action to checkout your repository. actions/checkout@v4 fails with syntax error
- name: Setup NET 8.0 SDK (x64)
uses: actions/setup-dotnet@v3 # Use the latest version of setup-dotnet
with:
dotnet-version: '8.0.x' # Specify the desired .NET version
architecture: 'x64' # Explicitly request the 64-bit architecture
- name: Checkout code
uses: actions/checkout@v3 # Action to checkout your repository. actions/checkout@v4 fails with syntax error
# - name: Setup .NET SDK
# uses: actions/setup-dotnet@v4 # Action to install a specific .NET SDK version
# with: