Skip to content

Commit

Permalink
Fix rust checks never running on PR (#5334)
Browse files Browse the repository at this point in the history
### What

typo'ed there
  • Loading branch information
Wumpf authored Feb 28, 2024
1 parent d68f449 commit f5442c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
rust-checks:
name: "Rust Checks"
if: github.event.pull_request.head.repo.owner.login == 'rerun-io' && needs.cpp-paths-filter.outputs.rust_changes == 'true'
if: github.event.pull_request.head.repo.owner.login == 'rerun-io' && needs.rust-paths-filter.outputs.rust_changes == 'true'
# Wait for the rust-paths-filter to be completed before starting.
needs: rust-paths-filter
uses: ./.github/workflows/reusable_checks_rust.yml
Expand Down
7 changes: 4 additions & 3 deletions crates/re_ui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
mod command;
mod command_palette;
mod design_tokens;
mod layout_job_builder;
mod syntax_highlighting;
mod toggle_switch;

pub mod drag_and_drop;
pub mod icons;
mod layout_job_builder;
pub mod list_item;
pub mod modal;
mod syntax_highlighting;
pub mod toasts;
mod toggle_switch;

pub use command::{UICommand, UICommandSender};
pub use command_palette::CommandPalette;
Expand Down

0 comments on commit f5442c9

Please sign in to comment.