diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27197dfdf..fe55aae81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,6 @@ env: jobs: build_and_test: name: Build and test - if: ( ! github.event.pull_request.draft ) runs-on: ubuntu-latest strategy: fail-fast: false @@ -67,9 +66,9 @@ jobs: run: cargo clippy --all-features --examples -- -D warnings - name: Use caching - uses: Swatinem/rust-cache@v2.5.0 + uses: Swatinem/rust-cache@v2 with: - workspaces: ${{ matrix.package }} -> target + workspaces: ${{ matrix.package }} - name: "Build" run: cargo build ${{ matrix.release && '--release' }} diff --git a/.github/workflows/rustdoc.yml b/.github/workflows/rustdoc.yml index 11fd84c02..e474235f4 100644 --- a/.github/workflows/rustdoc.yml +++ b/.github/workflows/rustdoc.yml @@ -12,7 +12,6 @@ env: jobs: rustdoc: - if: ( ! github.event.pull_request.draft ) runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/tlsn/examples/interactive/interactive.rs b/tlsn/examples/interactive/interactive.rs index 9ecaffa3a..f335cad56 100644 --- a/tlsn/examples/interactive/interactive.rs +++ b/tlsn/examples/interactive/interactive.rs @@ -127,7 +127,7 @@ async fn verifier( // Verify MPC-TLS and wait for (redacted) data. let (sent, received, session_info) = verifier.verify(socket.compat()).await.unwrap(); - // Check send data: check host. + // Check sent data: check host. let sent_data = String::from_utf8(sent.data().to_vec()).expect("Verifier expected sent data"); sent_data .find(SERVER_DOMAIN)