Add local_addr and ttl functions to TcpAcceptor
#1852
Workflow file for this run
This file contains 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
name: ci-macos | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- stable | |
# - nightly | |
name: Check ${{ matrix.version }} - x86_64-apple-darwin | |
runs-on: macOS-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.version }} | |
components: rustfmt, clippy | |
- name: check build | |
run: cargo check --all --bins --examples --tests | |
- name: check release build | |
run: cargo check --all --bins --examples --tests --release | |
- name: Cargo test | |
timeout-minutes: 40 | |
run: cargo test --all --all-features --no-fail-fast -- --nocapture |