some-to-err 0.2.1

A set of traits for converting `Option` to `Result`, providing methods to transform `Some` values to `Err` while handling `None` values as `Ok`, either directly or using a closure to generate the Ok result.
Documentation
name: Rust

on:
  push:
    branches:
      - master

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: stable
        override: true
        components: clippy

    - name: Build
      uses: actions-rs/cargo@v1
      with:
        command: build
        args: --all --verbose

    - name: Clippy
      uses: actions-rs/cargo@v1
      with:
        command: clippy
        args: --all-targets --all-features -- -D warnings

    - name: Tests
      uses: actions-rs/cargo@v1
      with:
        command: test
        args: --doc --all --verbose