venturi 0.4.0

A durable, PostgreSQL-backed job queue for Rust — controlled flow from backlog to worker.
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  ci:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6

      - name: Install the Rust toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy

      - name: Cache cargo artifacts
        uses: Swatinem/rust-cache@v2

      - name: Install just
        uses: extractions/setup-just@v4

      # Formatting, clippy (warnings as errors), type-check, and the fast tests.
      - name: Local gate
        run: just ci

      # Database-backed tests spin up an ephemeral PostgreSQL through
      # testcontainers, using the Docker daemon present on the runner.
      - name: Integration tests
        run: just integration-test