From 5394d03aca83bf7164fa59b5e532960b46ecdb23 Mon Sep 17 00:00:00 2001 From: Sacha Lansky <23283108+sacha-l@users.noreply.github.com> Date: Thu, 25 Apr 2024 18:09:40 +0200 Subject: [PATCH] fix: update dir for CI job --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9602698e..5640ec87 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,6 +17,6 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run tests on async-std-runtime - run: cargo test --features=async-std-runtime + run: cd swarm_nl && cargo test --features=async-std-runtime - name: Run tests on tokio-runtime - run: cargo test --features=tokio-runtime + run: cd swarm_nl && cargo test --features=tokio-runtime