jsonkeycompare 0.1.1

A very simple program that compares two or more JSON files and reports any keys that are present in the first file but not in any of the other files.
name: Rust Build

on:
  push:
    branches:
      - '*'
    paths-ignore:
      - "docs/**"
      - "README.md"

jobs:
  build:
    runs-on: ubuntu-latest

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

      - name: Set up Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          profile: minimal

      - name: Build the project
        run: cargo build --release

      - name: Run tests
        run: cargo test --release