Second attempt at github workflow.

* Added actions/checkout
* cargo build --example beep
This commit is contained in:
Sebastian Imlay 2020-01-16 12:01:03 -08:00
parent ce1d96ea57
commit 9e4ebd86d9
1 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,7 @@ jobs:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Install llvm and clang
run: brew install llvm
- name: Install stable
@ -158,6 +159,8 @@ jobs:
profile: minimal
toolchain: stable
override: true
- name: Build beep example
run: cargo build --example beep
- name: Run without features
run: cargo test --all --no-default-features --verbose
- name: Run all features