From 3639e8bb83f4b20a65d3a9364e914564ead5a5bf Mon Sep 17 00:00:00 2001 From: Aravindan M <83415736+aravindan888@users.noreply.github.com> Date: Tue, 7 Oct 2025 00:03:57 +0530 Subject: [PATCH] Update examples-build.yml Added a new CI job to build the efx-sandbox package using cargo build -p efx-sandbox. ensuring the sandbox always compiles with the latest code --- .github/workflows/examples-build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/examples-build.yml b/.github/workflows/examples-build.yml index 3b7958e..30dd2d9 100644 --- a/.github/workflows/examples-build.yml +++ b/.github/workflows/examples-build.yml @@ -47,3 +47,13 @@ jobs: with: name: ${{ matrix.example }}-${{ matrix.target }} path: target/wasm32-unknown-unknown/debug/examples/*.wasm + + sandbox: #new sandbox job + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - uses: Swatinem/rust-cache@v2 + + - name: Build efx-sandbox + run: cargo build -p efx-sandbox