This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
feat: apple music special handling #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust build and test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Rust project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Rust toolchain (v1.80.0) | |
uses: dtolnay/rust-toolchain@1.80.0 | |
- name: Run build | |
run: cargo build | |
- name: Run test | |
run: cargo test |