Skip to content

abolish ErrorKind, bring in thiserror, now all Error's can be matched #10

abolish ErrorKind, bring in thiserror, now all Error's can be matched

abolish ErrorKind, bring in thiserror, now all Error's can be matched #10

Workflow file for this run

name: Fmt
on: [push, pull_request]
jobs:
fmt:
name: Fmt
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: Install rustfmt
run: rustup component add rustfmt
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check