jsonbuilder 0.1.0

A json builder used to create JSON structures using a simple DSL
Documentation
name: Continuous Integration (CI)

on:
  push:
  pull_request:
    types:
      - reopened

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ubuntu-latest
    name: Test the application
    steps:
      - uses: actions/checkout@v3
      - name: Build the application
        run: cargo build --verbose
      - name: Run tests
        run: cargo test --verbose
  lint:
    runs-on: ubuntu-latest
    name: Lint the application
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Install Clippy
        run: rustup component add clippy
      - name: Run linter
        run: cargo clippy --verbose --all-targets --all-features