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 a7b55ea commit cd8f6d4Copy full SHA for cd8f6d4
.github/workflows/dotnet-test.yml
@@ -0,0 +1,38 @@
1
+name: dotnet bindings tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - v*
9
+ pull_request:
10
11
12
13
+env:
14
+ working-directory: bindings/dotnet
15
16
+jobs:
17
+ test:
18
+ runs-on: blacksmith-4vcpu-ubuntu-2404
19
+ timeout-minutes: 30
20
21
+ defaults:
22
+ run:
23
+ working-directory: ${{ env.working-directory }}
24
25
+ steps:
26
+ - name: Checkout code
27
+ uses: actions/checkout@v4
28
29
+ - name: Install Rust(stable)
30
+ uses: dtolnay/rust-toolchain@stable
31
32
+ - name: Install dotnet sdk 9.0
33
+ uses: actions/setup-dotnet@v4
34
+ with:
35
+ dotnet-version: '9.0.x'
36
37
+ - name: Run tests
38
+ run: make test
0 commit comments