We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5d1c34 commit 98f6080Copy full SHA for 98f6080
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: CI - Run Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main, master ]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ test:
12
+ name: Unit Tests
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout Code
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup .NET
20
+ uses: actions/setup-dotnet@v4
21
+ with:
22
+ dotnet-version: '8.0.x'
23
24
+ - name: Restore dependencies
25
+ run: dotnet restore OutSystems.NetChecksumUtils.UnitTests/OutSystems.NetChecksumUtils.UnitTests.csproj
26
27
+ - name: Run Tests
28
+ # We target the specific test project here
29
+ run: dotnet test OutSystems.NetChecksumUtils.UnitTests/OutSystems.NetChecksumUtils.UnitTests.csproj --configuration Release --no-restore --nologo --verbosity minimal
0 commit comments