fix(ci): use actions-rs/cargo@v1 for cargo

This commit is contained in:
Chance 2025-04-20 19:49:34 -04:00
parent 729ff93b3b
commit 332c9303e0
Signed by: caznix
GPG key ID: 489D213143D753FD

View file

@ -61,7 +61,10 @@ jobs:
cargo- cargo-
- name: 🚀 Run tests - name: 🚀 Run tests
run: cargo test --release - uses: actions-rs/cargo@v1
with:
command: test
run: --release
build: build:
name: 🏗️ Build ${{ matrix.target }} name: 🏗️ Build ${{ matrix.target }}
@ -121,7 +124,10 @@ jobs:
cargo- cargo-
- name: 🚀 Build release binary - name: 🚀 Build release binary
run: cargo zigbuild --target ${{ matrix.target }} --release - uses: https://github.com/actions-rs/cargo@v1
with:
command: zigbuild
run: --target ${{ matrix.target }} --release
- name: 📦 Package artifact - name: 📦 Package artifact
run: | run: |