From 17220b463476aba4b1bba68639aa0a3a7122fa61 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Thu, 8 Oct 2020 20:18:45 -0500 Subject: [PATCH] Use cargo check and build with --all-features under Windows. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c46df41..317f7e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: sudo apt-get update sudo apt-get install -y libspeechd-dev rustup update - cargo build --release + cargo check --release build_windows: name: Build Windows @@ -26,7 +26,7 @@ jobs: - run: | choco install -y llvm rustup update - cargo build --release + cargo check --release --all-features build_macos: name: Build MacOS @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v2 - run: | rustup update - cargo build --release + cargo check --release build_ios: name: Build iOS