Skip to content

Commit 90a182b

Browse files
authored
Merge pull request #2 from soernt/develop
Develop
2 parents b240d4f + 191c461 commit 90a182b

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

.github/workflows/push_build_and_test.yml renamed to .github/workflows/build_and_test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ jobs:
1818
uses: actions/setup-dotnet@v1
1919
with:
2020
dotnet-version: 6.0.x
21+
2122
- name: Restore dependencies
22-
working-directory: ./source
2323
run: dotnet restore
24+
2425
- name: Build
25-
working-directory: ./source
2626
run: dotnet build --no-restore
27+
2728
- name: Test
28-
working-directory: ./source
2929
run: dotnet test --no-build --verbosity normal
30+
31+
# dummy change
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)