csv_cruncher 0.1.0

A blazing-fast CSV processor with Python bindings, because pandas deserves a timeout
Documentation
name: Rust CI

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

jobs:
  build:
    runs-on: ubuntu-latest

steps:
    - uses: actions/checkout@v3
    - name: Install Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        override: true
    - name: Build
      run: cargo build --verbose
    - name: Run Tests
      run: cargo test --verbose
    - name: Check Formatting
      run: cargo fmt -- --check