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 882f2f7 commit f1a450aCopy full SHA for f1a450a
.github/workflows/dotnet.yml
@@ -0,0 +1,28 @@
1
+# This workflow will build a .NET project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+name: .NET
5
6
+on:
7
+ push:
8
+ branches: [ "master" ]
9
+ pull_request:
10
11
12
+jobs:
13
+ build:
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Setup .NET9
20
+ uses: actions/setup-dotnet@v4
21
+ with:
22
+ dotnet-version: 9.0.x
23
+ - name: Setup .NET8
24
25
26
+ dotnet-version: 8.0.x
27
+ - name: Build NET8
28
+ run: dotnet build StoryEstimator_NET8.csproj
0 commit comments