Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/os/macos/wifi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ pub(crate) fn get_wifi_transmit_rate(iface_name: &str) -> Option<u64> {
})
})
}

Loading