From 1d3f8c8e9db49bc14ca8b34594d42bdae51f4b55 Mon Sep 17 00:00:00 2001 From: Micah Date: Tue, 23 Sep 2025 21:13:24 -0700 Subject: [PATCH] Run tests in CI (this is the part where I have to try at least twice) --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3efb622d..83680275 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Build run: cargo build --locked --verbose - - name: Test + - name: Test (CLI) run: cargo test --locked --verbose - name: Save Rust Cache @@ -50,6 +50,13 @@ jobs: target key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: Test (Plugin) + run: lune run test-plugin + env: + RBX_API_KEY: ${{ secrets.PLUGIN_TEST_API_KEY }} + RBX_UNIVERSE_ID: ${{ vars.PLUGIN_TEST_UNIVERSE_ID }} + RBX_PLACE_ID: ${{ vars.PLUGIN_TEST_PLACE_ID }} + msrv: name: Check MSRV runs-on: ubuntu-latest