Add new_server_side_from_acceptor to allow init from a pre-existing Acceptor #202
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
name: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
profile: [dev, release] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --profile=${{ matrix.profile }} --verbose | |
- name: Run tests | |
run: cargo test --profile=${{ matrix.profile }} --verbose --features=trace | |
env: | |
RUST_BACKTRACE: 1 |