From 160d0314d9c2f43e7e891d88b9638716c2fea3fe Mon Sep 17 00:00:00 2001 From: Cyrix126 Date: Fri, 7 Jun 2024 11:37:32 +0200 Subject: [PATCH] fix: do not check features --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8ba0228..f758271 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Test - run: cargo test --all-features + run: cargo test typo: runs-on: ubuntu-latest steps: @@ -43,7 +43,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Clippy (fail on warnings) - run: cargo clippy --all-features -- -D warnings + run: cargo clippy -- -D warnings check: runs-on: ${{ matrix.os }} strategy: @@ -52,7 +52,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check compilation - run: cargo check --all-features --verbose + run: cargo check --verbose doc: runs-on: ${{ matrix.os }} strategy: @@ -61,4 +61,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: Documentation - run: cargo doc --all-features --no-deps + run: cargo doc --no-deps