File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
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 : [ "dev" ]
9
+ pull_request :
10
+ branches : [ "dev" ]
11
+
12
+ jobs :
13
+ build :
14
+
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ - name : Setup .NET
20
+ uses : actions/setup-dotnet@v4
21
+ with :
22
+ # Semantic version range syntax or exact version of a dotnet version
23
+ dotnet-version : 8.0.x
24
+ - name : Restore dependencies
25
+ run : dotnet restore
26
+ - name : Build
27
+ run : dotnet build --no-restore
28
+ # You can test your matrix by printing the current dotnet version
29
+ - name : Test
30
+ run : dotnet test --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments