Allow passing PCM data as slices instead of Vec #107
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: Windows (x64) | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
name: Build & Test Rust Crate | |
runs-on: windows-latest | |
env: | |
RUST_BACKTRACE: full | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Dependencies | |
run: vcpkg --triplet=x64-windows-static-md install glew | |
- name: Update Local Toolchain | |
run: | | |
rustup update | |
rustup component add clippy | |
- name: Toolchain Info | |
run: | | |
cargo --version --verbose | |
rustc --version | |
cargo clippy --version | |
- name: Lint | |
run: | | |
cargo fmt -- --check | |
# cargo clippy -- -D warnings | |
- name: Run Tests | |
run: | | |
cargo check | |
# cargo test --all | |
- name: Build Debug | |
run: cargo build | |