fix: consume stderr on wait #134
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: Mac M1 | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories | |
runs-on: macos-14 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Try auto-download | |
run: cargo run --example download_ffmpeg -- ../deps | |
- name: Build | |
run: cargo build --verbose | |
- name: Check without default features | |
run: cargo check --no-default-features | |
- name: Run tests | |
run: cargo test --all-targets --all-features --verbose -- --skip lib.rs |