Commit 9df99367 authored by Nugine's avatar Nugine
Browse files

fix: test all targets

parent e464be07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ jobs:
      - uses: taiki-e/install-action@just
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - run: just ci-test
      - run: just test

  mint-proxy-minio:
    name: e2e (mint, s3s-proxy, minio)
+1 −0
Original line number Diff line number Diff line
@@ -74,3 +74,4 @@ axum = "0.8.1"
serde_json = "1.0.140"
tokio = { version = "1.40.0", features = ["full"] }
tokio-util = { version = "0.7.13", features = ["io"] }
tower = "0.5.1"
+3 −6
Original line number Diff line number Diff line
@@ -15,10 +15,10 @@ fmt:

lint:
    uvx ruff check
    cargo clippy --all-features --all-targets --tests --benches
    cargo clippy --workspace --all-features --all-targets

test:
    cargo test --all-features
    cargo test --workspace --all-features --all-targets

doc:
    RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --open --no-deps --all-features
@@ -61,13 +61,10 @@ assert_unchanged:
ci-rust:
    cargo fmt --all --check
    cargo clippy --all-features --all-targets -- -D warnings
    just ci-test
    just test
    just codegen
    just assert_unchanged

ci-test:
    cargo test --all-features

ci-python:
    uvx ruff format --check
    uvx ruff check