Obtain user sound filename from API response rather than local config… #12
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allow manual workflow triggering from the "Actions" tab. | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install system dependencies | |
run: sudo apt-get update && sudo apt-get install --assume-yes libasound2-dev | |
- name: Build | |
run: rustc --version && cargo build --verbose | |
- name: Test | |
run: cargo test --verbose |