forked from ffplayout/ffplayout
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 964 Bytes
/
validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Validate
on: [push, pull_request]
jobs:
build:
if: github.repository == 'ffplayout/ffplayout'
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Set Build Tools and update Rust
run: |
rustup update stable
rustup component add rustfmt
rustup component add clippy
- name: Use ffmpeg on Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: FedericoCarboni/setup-ffmpeg@v2
- name: Tests on Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
cargo test --all-features
cargo clippy --all-features --all-targets -- --deny warnings
cargo fmt --all -- --check
- name: Run build on ${{ matrix.os }}
run: cargo build --all-features