From 7fc5a8fa6d651e8f73b59adb67a46c62232d3733 Mon Sep 17 00:00:00 2001 From: John Rogers Date: Thu, 10 Jul 2025 19:24:46 +0100 Subject: [PATCH] fix: update test commands to run all tests without binary specification Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3b6d3c..262d71e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,9 +62,9 @@ jobs: # Add library path for the cross-compiler's linker RUSTFLAGS: -L/usr/lib/aarch64-linux-gnu - name: Run tests on native platform - run: cargo test --release --bin ntp_timeturner + run: cargo test --release - name: Run PTP integration tests - run: cargo test ptp_integration_test --release --bin ntp_timeturner + run: cargo test ptp_integration_test --release - name: Upload artifact uses: actions/upload-artifact@v4