Skip to content

refactor(main): try to improve error handling #15

refactor(main): try to improve error handling

refactor(main): try to improve error handling #15

Workflow file for this run

name: Quality
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- name: Run Tests
run: cargo test --all-features
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1