Skip to content

Commit c6a366c

Browse files
committed
ci: run tests for duely
1 parent 9772ec1 commit c6a366c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/duely.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Duely
2+
on: [push]
3+
defaults:
4+
run:
5+
shell: bash
6+
working-directory: ./Duely
7+
jobs:
8+
Unit-Tests:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Setup .NET 8.0.x
13+
uses: actions/setup-dotnet@v4
14+
with:
15+
dotnet-version: "8.0.x"
16+
- name: Run tests
17+
run: for proj in $(find tests -name '*.csproj'); do dotnet test $proj --verbosity normal; done

0 commit comments

Comments
 (0)