We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa3c4d commit df0a5c4Copy full SHA for df0a5c4
.github/workflows/build-rust.yml
@@ -0,0 +1,25 @@
1
+name: Build Rust crates
2
+
3
+on:
4
+ push:
5
+ paths-include:
6
+ - 'rust/**'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ name: Build ${{ matrix.wheel }} on ${{ matrix.os }}
14
+ runs-on: ${{ matrix.os }}
15
+ strategy:
16
+ matrix:
17
+ os: [windows-latest, macos-latest, ubuntu-latest]
18
+ steps:
19
+ - name: Clone
20
+ uses: actions/checkout@v4
21
22
+ - name: Build
23
+ run: |
24
+ cd rust
25
+ cargo build --release
.github/workflows/build.yml
@@ -6,11 +6,13 @@ on:
- '.github/**'
- '!.github/workflows/**'
- 'README.md'
pull_request:
paths-ignore:
jobs:
BuildWindows:
0 commit comments