Use cargo check and build with --all-features under Windows.

This commit is contained in:
Nolan Darilek 2020-10-08 20:18:45 -05:00
parent 9243ea4e7f
commit 17220b4634

View File

@ -16,7 +16,7 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y libspeechd-dev sudo apt-get install -y libspeechd-dev
rustup update rustup update
cargo build --release cargo check --release
build_windows: build_windows:
name: Build Windows name: Build Windows
@ -26,7 +26,7 @@ jobs:
- run: | - run: |
choco install -y llvm choco install -y llvm
rustup update rustup update
cargo build --release cargo check --release --all-features
build_macos: build_macos:
name: Build MacOS name: Build MacOS
@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: | - run: |
rustup update rustup update
cargo build --release cargo check --release
build_ios: build_ios:
name: Build iOS name: Build iOS