use BTreeMap::extract_if for remove_topic_*_with_prefix #71
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| name: CI / Tests on macOS | |
| permissions: read-all | |
| jobs: | |
| test-on-macos: | |
| # We run tests on macos-14 instead of macos-latest, because Apple has changed policies | |
| # so that listening to multicast requires "Local Network Permission". | |
| # It is still unclear how to work around that in a GitHub runner. | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo test -- --test-threads=1 |