sqlite-watcher 0.4.1

Building blocks to observe database table changes in sqlite3
Documentation
default:
  image: rust:1.81

stages:
  - lint
  - build
  - test


fmt-check:
    stage: lint
    script:
        - rustup component add rustfmt
        - cargo fmt --check

clippy-check:
    stage: lint
    script:
        - rustup component add clippy
        - cargo clippy -- -D warnings

build:
  stage: build
  script:
    - cargo build --all-features

test:
  stage: test
  script:
    - cargo test --all-features