scim_v2 0.4.1

A crate that provides utilities for working with the System for Cross-domain Identity Management (SCIM) version 2.0 protocol. (rfc7642, rfc7643, rfc7644)
Documentation
name: Run tests on scim_v2 crate
on:
  push:
    branches:
      - '**'
      - '!main'
  pull_request:
    branches: [ main ]
env:
  CARGO_TERM_COLOR: always
permissions:
  contents: read
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: hecrj/setup-rust-action@110f36749599534ca96628b82f52ae67e5d95a3c # v2.0.1
        with:
          rust-version: stable
      - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
      - name: Cargo Check
        run: cargo check
      - name: Cargo Test
        run: cargo test
      - name: Cargo Clippy
        run: cargo clippy -- -D warnings
      - name: Cargo format
        run: cargo fmt --check
      - name: Verify generated filter parser
        run: |
          cargo install lalrpop --version 0.23.1
          lalrpop src/filter_parser.lalrpop
          git diff --exit-code src/filter_parser.rs || {
            echo "::error::src/filter_parser.rs does not match regenerated output from src/filter_parser.lalrpop"
            echo "Run 'lalrpop src/filter_parser.lalrpop' and commit the result."
            exit 1
          }