From d9ada812145341c1da09c33b14e439de023b7a7d Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Fri, 27 Mar 2020 00:25:37 +0100 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aeb90827..e53b2e51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,14 +17,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - name: Build + uses: actions/checkout@v2 run: cargo build --verbose - name: Run tests + uses: actions/checkout@v2 run: cargo test --workspace -- --test-threads=1 - name: Run clippy - - run: rustup component add clippy - - uses: actions-rs/clippy-check@v1 + uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features