Skip to content

Commit a25db4c

Browse files
authored
Implement test workflow
1 parent 0028410 commit a25db4c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/dotnet.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: .NET tests
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-dotnet@v4
16+
with:
17+
dotnet-version: 8.0.x
18+
- name: Restore
19+
run: dotnet restore tests/FairSplit.Tests/FairSplit.Tests.csproj
20+
- name: Test
21+
run: dotnet test tests/FairSplit.Tests/FairSplit.Tests.csproj --configuration Release

0 commit comments

Comments
 (0)