File tree Expand file tree Collapse file tree 6 files changed +47
-110
lines changed
Expand file tree Collapse file tree 6 files changed +47
-110
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - ' main'
7+ pull_request :
8+ branches :
9+ - ' main'
10+
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
13+ cancel-in-progress : true
14+
15+ env :
16+ CARGO_TERM_COLOR : always
17+
18+ jobs :
19+ test :
20+ name : ${{ matrix.os }}
21+ runs-on : ${{ matrix.os }}
22+ timeout-minutes : 5
23+ strategy :
24+ matrix :
25+ os :
26+ - windows-latest
27+ - ubuntu-latest
28+ - macos-13
29+ - macos-14 # Mac M1 (ARM64)
30+ steps :
31+ - uses : actions/checkout@v4
32+
33+ - name : Download FFmpeg
34+ run : cargo run --example download_ffmpeg -- ../deps
35+
36+ - name : Build
37+ run : cargo build --verbose
38+
39+ - name : Check without default features
40+ run : cargo check --no-default-features
41+
42+ - name : Run tests
43+ run : cargo test --all-targets --all-features --examples --verbose
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# FFmpeg Sidecar 🏍
22
3- [ Github] ( https://github.com/nathanbabcock/ffmpeg-sidecar ) |
4- [ Crates.io] ( https://crates.io/crates/ffmpeg-sidecar ) |
5- [ Docs.rs] ( https://docs.rs/ffmpeg-sidecar )
3+ [ Github] ( https://github.com/nathanbabcock/ffmpeg-sidecar ) •
4+ [ Crates.io] ( https://crates.io/crates/ffmpeg-sidecar ) •
5+ [ Docs.rs] ( https://docs.rs/ffmpeg-sidecar ) •
6+ [ <img src =" https://github.com/nathanbabcock/ffmpeg-sidecar/actions/workflows/ci.yml/badge.svg " align =" center " alt =" Github Actions " >] ( https://github.com/nathanbabcock/ffmpeg-sidecar/actions/workflows/ci.yml )
67
78> Wrap a standalone FFmpeg binary in an intuitive Iterator interface.
89
You can’t perform that action at this time.
0 commit comments