bear 0.2.2

A dead-simple test helper for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: [push, pull_request]

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - run: cargo fmt --all -- --check
    - run: cargo build
    - run: cargo test
    - run: cargo clippy -- -D warnings