Skip to content

idiomatic result handling #13

idiomatic result handling

idiomatic result handling #13

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Check fmt
run: cargo fmt --all -- --check
- name: Check linter
run: cargo clippy -- -Dwarnings --no-deps