Skip to content

Commit

Permalink
Use cargo make build instead of cargo check (FuelLabs#592)
Browse files Browse the repository at this point in the history
* Make build

* Add build as arg
  • Loading branch information
ellioty authored Sep 6, 2022
1 parent a619477 commit 5ad0dfd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:
args: --all --verbose -- --check
- command: clippy
args: --all-targets --all-features
- command: check
args: --all-targets --all-features
- command: make
args: build
- command: test
args: --all-targets --all-features --workspace --exclude fuel-p2p
- command: test
Expand All @@ -97,6 +97,11 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install Cargo Make
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-make
version: "0.35.16"
- uses: Swatinem/rust-cache@v1
with:
key: '${{ matrix.command }} ${{ matrix.args }}'
Expand Down

0 comments on commit 5ad0dfd

Please sign in to comment.