diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3c1acb..8d0c4a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,11 +32,7 @@ jobs: cache-directories: ${{ env.CARGO_TARGET_DIR }} - name: "Check" - run: cargo check --all - - name: "Build (Without Python node as it is build with maturin)" - run: cargo build --all --all-features - - name: "Test" - run: cargo test --all --all-features + run: cargo check --all --all-features clippy: name: "Clippy" @@ -48,14 +44,7 @@ jobs: - run: cargo --version --verbose - name: "Clippy" - run: cargo clippy --all - - name: "Clippy (tracing feature)" - run: cargo clippy --all - if: false - - name: "Clippy (metrics feature)" - run: cargo clippy --all - if: false - + run: cargo clippy --all --all-features rustfmt: name: "Formatting" runs-on: ubuntu-latest