We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64c562b commit 40d1a43Copy full SHA for 40d1a43
.github/workflows/dotnet-desktop.yml
@@ -0,0 +1,32 @@
1
+name: CTR Studio
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ strategy:
12
+ matrix:
13
+ os: [ubuntu-latest, windows-latest]
14
+ runs-on: ${{ matrix.os }}
15
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Install .NET
21
+ uses: actions/setup-dotnet@v4
22
+ with:
23
+ dotnet-version: 8.0.x
24
25
+ - name: Restore
26
+ run: dotnet restore
27
28
+ - name: Build
29
+ run: dotnet build --configuration Release --no-restore
30
31
+ - name: Test
32
+ run: dotnet test --configuration Release --no-build
0 commit comments