Skip to content

Commit 6c6129b

Browse files
committed
WIP: GitHub Actions
1 parent 478da65 commit 6c6129b

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
File renamed without changes.
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)