Skip to content

Commit 7254bbd

Browse files
committed
ci(github): add test action
Closes: #52
1 parent 892e800 commit 7254bbd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
test:
10+
name: Test
11+
runs-on: ubuntu-20.04
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Setup .NET
15+
uses: actions/setup-dotnet@v3
16+
with:
17+
dotnet-version: 3.1.x
18+
- name: Restore
19+
run: dotnet tool restore
20+
- name: Paket install
21+
run: dotnet paket install
22+
- name: Build
23+
run: dotnet fake build -t TestsRun

0 commit comments

Comments
 (0)