portail 2.1.0

Unified proxy/gateway: AI Gateway + MCP Gateway + CDN cache
Documentation
name: CI (Blacksmith Accelerated)

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: blacksmith
    steps:
      - uses: actions/checkout@v4
      - uses: actions-rust-lang/setup-rust-toolchain@v1
        with:
          components: clippy, rustfmt
      - uses: Swatinem/rust-cache@v2
      - name: Cargo Check
        run: cargo check --all-targets
      - name: Cargo Test
        run: cargo test --all-targets
      - name: Cargo Clippy
        run: cargo clippy --all-targets
      - name: Cargo Format Check
        run: cargo fmt --check