Skip to content

docs(readme): clarify automatic spotify login #2

docs(readme): clarify automatic spotify login

docs(readme): clarify automatic spotify login #2

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Format, lint, compile, and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --all -- --check
- name: Compile
run: cargo check --all-features
- name: Lint
run: cargo clippy --all-features -- -D warnings
- name: Test
run: cargo test --all-features