Skip to content

Added more help messages, fixed bug in build command with --all-features #70

Added more help messages, fixed bug in build command with --all-features

Added more help messages, fixed bug in build command with --all-features #70

Workflow file for this run

name: Build and test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build_x86-64:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --workspace --all-features --verbose
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Run all tests
run: cargo test --workspace --verbose