ooroo 0.3.0

A fast, compiled rule engine with a text-based DSL
Documentation
name: CI

on:
    push:
        branches: [main]
    pull_request:
        branches: [main]

jobs:
    test:
        name: Test
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v4
            - uses: dtolnay/rust-toolchain@stable
            - uses: Swatinem/rust-cache@v2

            - name: Format check
              run: cargo fmt --check

            - name: Clippy
              run: cargo clippy -- -D warnings

            - name: Tests
              run: cargo test

            - name: Property-based tests
              run: PROPTEST_CASES=1000 cargo test --test proptest_invariants