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 2d0bb1d commit 6893ff1Copy full SHA for 6893ff1
.github/workflows/dotnet.yml
@@ -0,0 +1,30 @@
1
+# Building and testing .NET
2
+# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+name: .NET CI
5
6
+on:
7
+ push:
8
+ branches: [ "master" ]
9
+ pull_request:
10
11
12
+jobs:
13
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v4
20
21
+ - name: Set up .NET 8
22
+ uses: actions/setup-dotnet@v4
23
+ with:
24
+ dotnet-version: 8.0.x
25
26
+ - name: Restore dependencies
27
+ run: dotnet restore
28
29
+ - name: Build projects
30
+ run: dotnet build --no-restore
0 commit comments