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 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 { }) }) } -