File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
# This workflow will build a .NET project
2
2
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
3
4
- name : .NET
4
+ name : .NET Deploy
5
5
6
6
on :
7
7
push :
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 Test
5
+
6
+ on :
7
+ pull_request :
8
+ - branches : ["master"]
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - name : Setup .NET
17
+ uses : actions/setup-dotnet@v3
18
+ with :
19
+ dotnet-version : 7.0.x
20
+ - name : Restore dependencies
21
+ run : dotnet restore
22
+ - name : Build
23
+ run : dotnet build --no-restore
24
+ - name : Test
25
+ run : dotnet test --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments