Second attempt at github workflow.
* Added actions/checkout * cargo build --example beep
This commit is contained in:
parent
ce1d96ea57
commit
9e4ebd86d9
|
@ -150,6 +150,7 @@ jobs:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
- name: Install llvm and clang
|
- name: Install llvm and clang
|
||||||
run: brew install llvm
|
run: brew install llvm
|
||||||
- name: Install stable
|
- name: Install stable
|
||||||
|
@ -158,6 +159,8 @@ jobs:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
- name: Build beep example
|
||||||
|
run: cargo build --example beep
|
||||||
- name: Run without features
|
- name: Run without features
|
||||||
run: cargo test --all --no-default-features --verbose
|
run: cargo test --all --no-default-features --verbose
|
||||||
- name: Run all features
|
- name: Run all features
|
||||||
|
|
Loading…
Reference in New Issue