From 9e4ebd86d9bbd2e5bd826689e66ca63b0be5f4bc Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Thu, 16 Jan 2020 12:01:03 -0800 Subject: [PATCH] Second attempt at github workflow. * Added actions/checkout * cargo build --example beep --- .github/workflows/cpal.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cpal.yml b/.github/workflows/cpal.yml index a26f8c1..805d723 100644 --- a/.github/workflows/cpal.yml +++ b/.github/workflows/cpal.yml @@ -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