We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b06701 + 38b418e commit 5375c98Copy full SHA for 5375c98
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ unit-tests:
10
+ name: Unit Tests
11
+ runs-on: windows-latest
12
+ steps:
13
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
14
15
+ - name: Setup .NET
16
+ uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
17
+ with:
18
+ dotnet-version: 9.0.x
19
20
+ - name: Restore
21
+ run: dotnet restore tests/Reactor.Tests/Reactor.Tests.csproj
22
23
+ - name: Test
24
+ run: dotnet test tests/Reactor.Tests/Reactor.Tests.csproj --no-restore --logger "console;verbosity=normal"
0 commit comments