From bd182d555aad503d8a71d7def4ca73d839c79484 Mon Sep 17 00:00:00 2001 From: y21 <30553356+y21@users.noreply.github.com> Date: Sun, 8 Sep 2024 22:09:32 +0200 Subject: [PATCH] get rid of toolchain logic entirely --- .github/workflows/test.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d9c72217..bdb3f97c 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,23 +10,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Install - uses: actions-rs/toolchain@v1 - with: - profile: minimal - - - name: Test VM - uses: actions-rs/cargo@v1 - with: - command: test - args: -p dash_vm # no --all-features because jit + run: cargo t -p dash-vm # no --all-features because jit - name: Test lints - uses: actions-rs/cargo@v1 - with: - command: test - args: -p lints + run: cargo t -p lints - name: Lints run: ./lints.sh