csvpp 0.5.0

Compile csvpp source code to a target spreadsheet format
Documentation
name: csv++

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - name: Install Rust
        run: rustup component add rustfmt clippy

      - name: Install cargo-llvm-cov
        uses: taiki-e/install-action@cargo-llvm-cov

      - name: Run Lint and Tests
        run: |
          cargo clippy -- -D warnings
          cargo fmt --all -- --check
          cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info

      - name: Upload Code Coverage Report
        uses: codecov/codecov-action@v3
        with:
          token: ${{ secrets.CODECOV_TOKEN }}
          files: lcov.info
          fail_ci_if_error: true