Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Feb 8, 2023
1 parent 9b642e0 commit f5dd657
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,4 @@ jobs:
uses: taiki-e/install-action@nextest
- name: Cargo nextest
if: matrix.action == 'nextest'
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --workspace --all-features --all-targets --locked
run: cargo nextest run --release --workspace --all-features --all-targets --locked
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ jobs:
- name: Setup Rust toolchain
run: rustup target add ${{ matrix.target.name }}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --locked --target ${{ matrix.target.name }}
run: cargo build --release --locked --target ${{ matrix.target.name }}
- name: Compress
run: |
mv target/${{ matrix.target.name }}/release/cargo-all${{ matrix.target.extension }} .
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ jobs:
- name: Setup Rust toolchain
run: rustup target add ${{ matrix.target.name }}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --locked --target ${{ matrix.target.name }}
run: cargo build --release --locked --target ${{ matrix.target.name }}
- name: Compress
run: |
mv target/${{ matrix.target.name }}/release/cargo-all${{ matrix.target.extension }} .
Expand Down

0 comments on commit f5dd657

Please sign in to comment.