Skip to content

add proptests to test against panics #34

add proptests to test against panics

add proptests to test against panics #34

Workflow file for this run

name: Rust
on:
push:
branches:
- "*"
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}
override: true
- name: clean
run: cargo clean
- name: build
run: cargo build --verbose --all-features
env:
RUST_BACKTRACE: 1
- name: test
if: matrix.version == 'nightly'
run: cargo test --all-features
env:
RUST_BACKTRACE: 1