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 3719e01 commit 7ba8abcCopy full SHA for 7ba8abc
.github/workflows/rust.yml
@@ -16,16 +16,17 @@ jobs:
16
runs-on: macos-latest
17
steps:
18
- uses: actions/checkout@v4
19
+ - name: Update Rust (macOS)
20
+ run: rustup update stable
21
- name: Build (macOS)
- run: cargo build --release --target x86_64-apple-darwin
22
+ run: cargo build --release
23
24
build-windows:
25
runs-on: windows-latest
26
27
- # Specific Windows build steps if needed (e.g., setting environment variables)
28
- name: Build (Windows)
- run: cargo build --release --target x86_64-pc-windows-gnu
29
30
31
upload-artifacts:
32
needs: [build-linux, build-macos, build-windows]
0 commit comments