Skip to content

chore: update changelog #63

chore: update changelog

chore: update changelog #63

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: 1
steps:
- name: Setup Python
uses: actions/setup-python@v3.1.1
- name: Install youtube-dl and yt-dlp
run: pip install youtube-dl yt-dlp
- name: Install rustfmt
run: rustup component add rustfmt
- uses: Swatinem/rust-cache@v1
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Checkout code
uses: actions/checkout@v2
- name: Check formatting
run: cargo fmt --all -- --check
- name: Check compilation
run: cargo check --all-features --all-targets --verbose
- name: Run tests
run: cargo hack test --each-feature --exclude-no-default-features