Skip to content

Commit 2056d8e

Browse files
author
GSD Executor
committed
ci: add .NET 10 GitHub Actions build workflow
- Triggers on push to main and pull_request - Runs on windows-latest with .NET 10 (1xx feature band) - Targets src/GsdOrchestrator/GsdOrchestrator.csproj - dotnet restore then dotnet build --no-restore --configuration Release
1 parent 739699a commit 2056d8e

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Source: verified against docs.github.com/actions/tutorials/build-and-test-code/net
2+
# and github.com/actions/runner-images/issues/13789 (MSBuild pinning)
3+
name: CI
4+
5+
on:
6+
push:
7+
branches: [ main ]
8+
pull_request:
9+
10+
jobs:
11+
build:
12+
runs-on: windows-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
16+
- name: Setup .NET 10
17+
uses: actions/setup-dotnet@v5
18+
with:
19+
dotnet-version: '10.0.1xx'
20+
21+
- name: Restore dependencies
22+
run: dotnet restore src/GsdOrchestrator/GsdOrchestrator.csproj
23+
24+
- name: Build
25+
run: dotnet build src/GsdOrchestrator/GsdOrchestrator.csproj --no-restore --configuration Release

0 commit comments

Comments
 (0)