From 664d7a5fe92acb123a36eafba45220e592600a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Tue, 14 Jan 2025 13:08:34 -0300 Subject: [PATCH] ci: Add udp tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1aa67c0..7c0b2616 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,10 @@ jobs: run: SKIP_FRONTEND=1 cargo test --no-run --locked --verbose - name: Run Tests - run: SKIP_FRONTEND=1 cargo test --verbose -- --nocapture + run: | + SKIP_FRONTEND=1 cargo test --verbose -- --nocapture + SKIP_FRONTEND=1 cargo test test_udpserver_receive_only --verbose -- --nocapture + SKIP_FRONTEND=1 cargo test test_udpserver_send_only --verbose -- --nocapture build: runs-on: ${{ matrix.os }}