Action #3
This commit is contained in:
parent
30017bed36
commit
24d45ed14a
1 changed files with 7 additions and 0 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -18,6 +18,9 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set up Docker
|
||||||
|
uses: docker/setup-docker@v2
|
||||||
|
|
||||||
- name: Set up Rust
|
- name: Set up Rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
|
@ -25,6 +28,10 @@ jobs:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
|
- name: Install libavutil development package
|
||||||
|
run: sudo apt-get update && sudo apt-get install -y libavutil-dev
|
||||||
|
|
||||||
|
|
||||||
- name: Install Cargo Dependencies
|
- name: Install Cargo Dependencies
|
||||||
run: cargo install metadata
|
run: cargo install metadata
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue