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 ca0324b commit a5ad8dbCopy full SHA for a5ad8db
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,37 @@
1
+---
2
+name: Build
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - '*'
8
+ pull_request:
9
10
11
12
+jobs:
13
+ test:
14
+ uses: ./.github/workflows/test.yml
15
+ with:
16
+ branch: ${{ github.ref_name }}
17
18
+ build:
19
+ name: Build
20
+ runs-on: macos-latest
21
+ needs: test
22
23
+ strategy:
24
+ matrix:
25
+ target:
26
+ - x86_64-apple-darwin
27
+ - aarch64-apple-darwin
28
29
+ steps:
30
+ - uses: actions/checkout@v5
31
32
+ - uses: dtolnay/rust-toolchain@stable
33
34
+ targets: ${{ matrix.target }}
35
36
+ - name: Build
37
+ run: cargo build --release --locked --target ${{ matrix.target }}
0 commit comments