Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for automated testing via Travis CI. #185

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: rust
addons:
apt:
packages:
- libasound2-dev
rust:
- nightly
- beta
- stable
script:
- cargo build -v
- cargo test -v
- cargo doc -v
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Spatial Audio Server
# Spatial Audio Server [![Build Status](https://travis-ci.org/museumsvictoria/spatial_audio_server.svg?branch=master)](https://travis-ci.org/museumsvictoria/spatial_audio_server)

A cross-platform, n-channel spatial audio server developed by
[MindBuffer](https://www.mindbuffer.net/) using the [Nannou Creative Coding
Expand Down