From 4371302da87f7fad4649c0ef4eade9432dc94529 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 29 Mar 2021 21:46:51 +0200 Subject: Remove workspace Cargo.toml, add template --- .github/workflows/rust.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d1a7ade0b..178ccf89c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -81,10 +81,8 @@ jobs: with: path: target key: ${{ runner.os }}-${{ matrix.target }} - - uses: actions-rs/cargo@v1 - with: - command: check - args: --package ${{ matrix.package }} --features=${{ matrix.features }} --target=${{ matrix.target }} + - name: Check + run: cd ${{ matrix.package }} && cargo check --features=${{ matrix.features }} --target=${{ matrix.target }} fmt: runs-on: ubuntu-latest -- cgit