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 8253839 commit 8791e70Copy full SHA for 8791e70
.github/workflows/ci.yml
@@ -0,0 +1,17 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ name: Run tests
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, windows-latest, macos-latest]
11
+ runs-on: ${{ matrix.os }}
12
+ steps:
13
+ - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # 2.3.4
14
+ - uses: actions/setup-dotnet@a71d1eb2c86af85faa8c772c03fb365e377e45ea # 1.8.0
15
+ with:
16
+ dotnet-version: 5.0.202
17
+ - run: dotnet test
0 commit comments