assert-unchecked 0.1.2

Unsafe assertions that allow for optimizations in release mode.
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@stable
      - name: Build
        run: cargo build --verbose
      - name: Run tests with debug assertions
        run: cargo test --verbose
      - name: Run tests withotu debug assertions
        run: cargo test --release --verbose