Skip to content

Use C-string literals for EL type in C-API #236

Use C-string literals for EL type in C-API

Use C-string literals for EL type in C-API #236

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
name: Check, test, rustfmt and clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust, clippy and rustfmt
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Check
run: |
cargo check --all-features
cargo check --all-features \
--manifest-path dolby_vision/Cargo.toml
- name: Test
run: |
cargo test --all-features
cargo test --all-features --bins
cargo test --all-features --all-targets \
--manifest-path dolby_vision/Cargo.toml
- name: Rustfmt
run: |
cargo fmt --check
cargo fmt --check \
--manifest-path dolby_vision/Cargo.toml
- name: Clippy
run: |
cargo clippy --all-features \
--all-targets --tests -- --deny warnings --verbose
cargo clippy --all-features \
--manifest-path dolby_vision/Cargo.toml \
--all-targets --tests -- --deny warnings --verbose