File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -447,6 +447,16 @@ fn run_typescript_tests() -> Result<()> {
447447}
448448
449449fn run_csharp_tests ( ) -> Result < ( ) > {
450+ cmd ! (
451+ "cargo" ,
452+ "run" ,
453+ "-p" ,
454+ "spacetimedb-codegen" ,
455+ "--example" ,
456+ "regen-csharp-moduledef" ,
457+ )
458+ . run ( ) ?;
459+ cmd ! ( "bash" , "tools/check-diff.sh" , "crates/bindings-csharp" ) . run ( ) ?;
450460 cmd ! ( "dotnet" , "test" , "-warnaserror" )
451461 . dir ( "crates/bindings-csharp" )
452462 . run ( ) ?;
@@ -566,16 +576,6 @@ fn main() -> Result<()> {
566576 )
567577 . run ( ) ?;
568578 cmd ! ( "bash" , "tools/check-diff.sh" ) . run ( ) ?;
569- cmd ! (
570- "cargo" ,
571- "run" ,
572- "-p" ,
573- "spacetimedb-codegen" ,
574- "--example" ,
575- "regen-csharp-moduledef" ,
576- )
577- . run ( ) ?;
578- cmd ! ( "bash" , "tools/check-diff.sh" , "crates/bindings-csharp" ) . run ( ) ?;
579579 }
580580
581581 Some ( CiCmd :: Lint ) => {
You can’t perform that action at this time.
0 commit comments