fix: wait_with_output forget to close stdin #403
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
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- 'build_doc.sh' | |
- 'check.sh' | |
- 'run_ci_tests.sh' | |
- 'start_sshd.sh' | |
- 'stop_sshd.sh' | |
pull_request: | |
paths-ignore: | |
- 'build_doc.sh' | |
- 'check.sh' | |
- 'run_ci_tests.sh' | |
- 'start_sshd.sh' | |
- 'stop_sshd.sh' | |
name: os check | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
os-check: | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest] | |
steps: | |
- name: Install toolchain | |
run: | | |
rustup toolchain install stable --no-self-update --profile minimal | |
- uses: actions/checkout@v4 | |
- name: Create Cargo.lock for caching | |
run: cargo update | |
- uses: Swatinem/rust-cache@v2 | |
- name: cargo test | |
run: cargo test --all-features --all-targets |