From c470db9ba83c53f45ebe93aba4c9035e1818b805 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 10 Oct 2020 14:35:13 -0700 Subject: [PATCH] Running testing script in CI. --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f30d191..6a060f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,10 @@ jobs: toolchain: ${{ matrix.toolchain }} override: true + - name: Check Features + run: ./scripts/test.sh --core + shell: bash + - name: Run Tests - uses: actions-rs/cargo@v1 - with: - command: test - args: --all-features + run: ./scripts/test.sh + shell: bash