From 382fc0c4a049b3d790b0d32c1b884cbbcb8fcfd4 Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Thu, 4 Aug 2022 00:32:46 +0000 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 69f5ac4..7eeb6ae 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,7 +16,9 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Build + - name: Init submodules + run: git submodule update --init + - name: Build interpreter run: cd interpreter && cargo build --verbose; cd .. - - name: Run tests + - name: Run interpreter tests run: cd interpreter && cargo test --verbose; cd ..