Run tests in CI (this is the part where I have to try at least twice)

This commit is contained in:
Micah
2025-09-23 21:13:24 -07:00
parent a894313a4b
commit 1d3f8c8e9d

View File

@@ -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