Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,7 @@ jobs:

- name: Run Cargo Test (Top-Level tests Folder via Cargo Make)
run: cargo +${{ matrix.rust_toolchain }} make --cwd ./tests test --locked --profile ${{ matrix.cargo_profile }}

- name: Run Cargo Test (Top-Level tests Folder via Cargo Make) w/ Nightly Features
# some tests have varying collateral depending on whether the nightly feature is enabled (not to be confused with the nightly toolchain)
run: cargo +${{ matrix.rust_toolchain }} make --cwd ./tests test --locked --profile ${{ matrix.cargo_profile }} --features nightly
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trailing whitespace detected at the end of this line. Please remove it to maintain code cleanliness.

Suggested change
run: cargo +${{ matrix.rust_toolchain }} make --cwd ./tests test --locked --profile ${{ matrix.cargo_profile }} --features nightly
run: cargo +${{ matrix.rust_toolchain }} make --cwd ./tests test --locked --profile ${{ matrix.cargo_profile }} --features nightly

Copilot uses AI. Check for mistakes.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub extern "system" fn driver_entry(
::core::panicking::panic_fmt(
format_args!(
"internal error: entered unreachable code: {0}",
format_args!("Option should never be None")
format_args!("Option should never be None"),
),
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub extern "system" fn driver_entry(
::core::panicking::panic_fmt(
format_args!(
"internal error: entered unreachable code: {0}",
format_args!("Option should never be None")
format_args!("Option should never be None"),
),
);
};
Expand Down
Loading