kjson 0.0.10

A lightweight JSON parser intended for educational use and learning purposes.
Documentation
name: Build On Ubuntu

on:
  push:
    branches: [ "main" ]
    paths-ignore:
      - 'readme.md'
      - '.gitignore'
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Check code style
      run: cargo fmt --check
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose