diff --git a/.github/workflows/full-ci.yml b/.github/workflows/full-ci.yml index 365ef2144..6543cbc28 100644 --- a/.github/workflows/full-ci.yml +++ b/.github/workflows/full-ci.yml @@ -161,10 +161,10 @@ jobs: run: cargo +nightly update -Z minimal-versions - name: "Compile tests" - run: cargo test $GDEXT_FEATURES --features godot/register-docs --no-run ${{ matrix.rust-extra-args }} + run: cargo test $GDEXT_FEATURES --features itest/register-docs --no-run ${{ matrix.rust-extra-args }} - name: "Test" - run: cargo test $GDEXT_FEATURES --features godot/register-docs ${{ matrix.rust-extra-args }} + run: cargo test $GDEXT_FEATURES --features itest/register-docs ${{ matrix.rust-extra-args }} miri-test: diff --git a/.github/workflows/minimal-ci.yml b/.github/workflows/minimal-ci.yml index c6418131e..1814548b6 100644 --- a/.github/workflows/minimal-ci.yml +++ b/.github/workflows/minimal-ci.yml @@ -120,10 +120,10 @@ jobs: uses: ./.github/composite/rust - name: "Compile tests" - run: cargo test $GDEXT_FEATURES --features godot/register-docs --no-run + run: cargo test $GDEXT_FEATURES --features itest/register-docs --no-run - name: "Test" - run: cargo test $GDEXT_FEATURES + run: cargo test $GDEXT_FEATURES --features itest/register-docs # For complex matrix workflow, see https://stackoverflow.com/a/65434401