From 149b7252ca1638ca9b308f4479e290ccaeaa3ddd Mon Sep 17 00:00:00 2001 From: shellrow Date: Wed, 3 Jun 2026 20:46:57 +0900 Subject: [PATCH 1/2] chore: run cargo fmt --- src/os/macos/wifi.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/os/macos/wifi.rs b/src/os/macos/wifi.rs index d38efa2..292e5e0 100644 --- a/src/os/macos/wifi.rs +++ b/src/os/macos/wifi.rs @@ -23,4 +23,3 @@ pub(crate) fn get_wifi_transmit_rate(iface_name: &str) -> Option { }) }) } - From 05be102045b642931a9aa8712e98fe7d70df8f2f Mon Sep 17 00:00:00 2001 From: shellrow Date: Wed, 3 Jun 2026 20:57:28 +0900 Subject: [PATCH 2/2] chore: update CI workflow checks --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e69a5c..d197f4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: os: [ubuntu-latest, macOS-latest, windows-latest] steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - name: Install Rust Toolchain run: rustup toolchain install stable --profile minimal --no-self-update @@ -45,6 +45,9 @@ jobs: - name: Run cargo test run: cargo test + - name: Run cargo check with all features + run: cargo check --all-features + cross: name: Cross compile runs-on: ubuntu-latest @@ -60,7 +63,7 @@ jobs: - x86_64-unknown-netbsd steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - name: Install Rust Toolchain run: rustup toolchain install stable --profile minimal --no-self-update