snss 0.1.0

Basic SNSS file parsing (eg. Chrome Session and Tabs Files)
Documentation
# .github/workflows/workflow.yml
name: CI

on:
  pull_request:
    branches:
      - main

jobs:
  build-and-test:
    runs-on: ubuntu-latest

    steps:
      # Checkout the repository
      - name: Checkout code
        uses: actions/checkout@v3

      # Install Rust toolchain
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true

      - name: Install cargo-rdme
        uses: taiki-e/install-action@cargo-rdme
      - name: Check if the README is up to date.
        run: cargo rdme --check

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

      # Cache (not worth it yet)
      # - uses: Swatinem/rust-cache@v2

      # Run Clippy (linting)
      - name: Run Clippy
        run: cargo clippy --all-targets -- -D warnings

      # Check code formatting
      - name: Check formatting
        run: cargo fmt --all --check

      # Run tests with cargo-nextest
      - name: Run Tests
        run: cargo nextest run