We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9772ec1 commit c6a366cCopy full SHA for c6a366c
.github/workflows/duely.yml
@@ -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