Fist attempt at github fix

This commit is contained in:
Sebastian Imlay 2020-01-16 11:55:49 -08:00
parent 2bf905f3ec
commit ce1d96ea57
1 changed files with 17 additions and 0 deletions

View File

@ -145,3 +145,20 @@ jobs:
run: |
$Env:CPAL_ASIO_DIR = "$Env:GITHUB_WORKSPACE\asio"
cargo test --all --all-features --verbose
macos-test:
runs-on: macOS-latest
steps:
- name: Install llvm and clang
run: brew install llvm
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run without features
run: cargo test --all --no-default-features --verbose
- name: Run all features
run: cargo test --all --all-features --verbose