diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0a589776..d2ea1be2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,11 +22,15 @@ jobs: override: true profile: minimal - name: Build - run: | - cargo build --workspace --verbose + uses: actions-rs/cargo@v1 + with: + command: build + args: --workspace --verbose - name: Test - run: | - cargo test --workspace --verbose + uses: actions-rs/cargo@v1 + with: + command: test + args: --workspace --verbose env: RUST_BACKTRACE: 1