fix(ci): use actions-rs/cargo@v1 for cargo
This commit is contained in:
parent
729ff93b3b
commit
332c9303e0
1 changed files with 8 additions and 2 deletions
|
@ -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: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue