Skip to content

Commit

Permalink
fix networking example
Browse files Browse the repository at this point in the history
  • Loading branch information
Uriopass committed Dec 10, 2023
1 parent 3816d94 commit 5b6a40a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
with:
rust-version: 'stable'
- name: Check
run: cargo check --verbose --workspace
run: cargo check --verbose --workspace --tests --examples --all-features
- name: Run tests
run: cargo test --verbose --workspace
run: cargo test --verbose --workspace --all-features
6 changes: 3 additions & 3 deletions networking/examples/example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use Action::*;

#[derive(Clone, Serialize, Deserialize, Debug)]
struct World {
incr_a: u32,
incr_b: u32,
tick: u32,
incr_a: u64,
incr_b: u64,
tick: u64,
pad: Vec<u8>,
}

Expand Down

0 comments on commit 5b6a40a

Please sign in to comment.