We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7369123 commit 97144f4Copy full SHA for 97144f4
.github/workflows/engine_ci.yml
@@ -0,0 +1,28 @@
1
+name: .NET
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build:
11
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Setup .NET
17
+ uses: actions/setup-dotnet@v4
18
+ with:
19
+ dotnet-version: 8.0.x
20
21
+ - name: Restore dependencies
22
+ run: dotnet restore
23
24
+ - name: Build
25
+ run: dotnet build --no-restore
26
27
+ - name: Test
28
+ run: dotnet test --no-build --verbosity normal
0 commit comments