File tree Expand file tree Collapse file tree 2 files changed +32
-3
lines changed Expand file tree Collapse file tree 2 files changed +32
-3
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,14 @@ jobs:
18
18
uses : actions/setup-dotnet@v1
19
19
with :
20
20
dotnet-version : 6.0.x
21
+
21
22
- name : Restore dependencies
22
- working-directory : ./source
23
23
run : dotnet restore
24
+
24
25
- name : Build
25
- working-directory : ./source
26
26
run : dotnet build --no-restore
27
+
27
28
- name : Test
28
- working-directory : ./source
29
29
run : dotnet test --no-build --verbosity normal
30
+
31
+ # dummy change
Original file line number Diff line number Diff line change
1
+ name : BuildAndTestAndCreateRelease
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ buildAndTest :
8
+ runs-on : ubuntu-20.04
9
+ defaults :
10
+ run :
11
+ working-directory : ./source
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Setup .NET
16
+ uses : actions/setup-dotnet@v1
17
+ with :
18
+ dotnet-version : 6.0.x
19
+
20
+ - name : Restore dependencies
21
+ run : dotnet restore
22
+
23
+ - name : Build
24
+ run : dotnet build --no-restore
25
+
26
+ - name : Test
27
+ run : dotnet test --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments