Skip to content

update version to 0.1.6 (#71) #58

update version to 0.1.6 (#71)

update version to 0.1.6 (#71) #58

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
format_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format
run: cargo fmt -- --check
build_std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --no-default-features
- name: Run tests
run: cargo test --verbose --no-default-features
build_no_std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --features std
- name: Run tests
run: cargo test --verbose --features std