Correct my own mistake and move plugin test to its own step

This commit is contained in:
Micah
2025-09-23 21:19:26 -07:00
parent 1d3f8c8e9d
commit 47db569c52

View File

@@ -38,7 +38,7 @@ jobs:
- name: Build - name: Build
run: cargo build --locked --verbose run: cargo build --locked --verbose
- name: Test (CLI) - name: Test
run: cargo test --locked --verbose run: cargo test --locked --verbose
- name: Save Rust Cache - name: Save Rust Cache
@@ -50,13 +50,6 @@ jobs:
target target
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} 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: msrv:
name: Check MSRV name: Check MSRV
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -90,6 +83,27 @@ jobs:
target target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
test-plugin:
name: Test Plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Rokit
uses: CompeyDev/setup-rokit@v0.1.2
with:
version: 'v1.1.0'
- name: Test
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 }}
lint: lint:
name: Rustfmt, Clippy, Stylua, & Selene name: Rustfmt, Clippy, Stylua, & Selene
runs-on: ubuntu-latest runs-on: ubuntu-latest