Skip to content

Commit

Permalink
chore(ci): fix windows build error
Browse files Browse the repository at this point in the history
Signed-off-by: Dentrax <furkan.turkal@hotmail.com>
  • Loading branch information
Dentrax committed Apr 12, 2021
1 parent 7f7b264 commit 194ed42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 27 deletions.
27 changes: 1 addition & 26 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,4 @@ jobs:
profile: minimal
override: true
- name: Build | Check
run: cargo check --all

# Run tests on Linux, macOS, and Windows
# On both Rust stable and Rust nightly
test:
name: Test Suite
runs-on: ${{ matrix.os }}
needs: cargo_check # First check then run expansive tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable, nightly]
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
# Install all the required dependencies for testing
- name: Setup | Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
# Run the ignored tests that expect the above setup
- name: Build | Test
run: cargo test --all-features -- -Z unstable-options --include-ignored
run: cargo check --all
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ tokio = { version = "1.4.0", features = ["full"] }
anyhow = "1.0.40"
serde_json = "1.0.64"
clap = "2.33.3"
prettytable-rs = "0.8.0"
prettytable-rs = "0.8.0"
openssl = { version = "0.10", features = ["vendored"] }

0 comments on commit 194ed42

Please # to comment.