shirabe 0.1.0

Headless browser automation — CDP engine + HTTP debug API
Documentation
name: Checks

on:
  push:
    branches: [master, dev]
  pull_request:

jobs:
  check:
    runs-on: ubuntu-latest
    env:
      # The browser backend fetch is exercised separately; keep the check job
      # offline-friendly.
      SHIRABE_SKIP_BROWSER_FETCH: "1"
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy
      - uses: Swatinem/rust-cache@v2

      - run: cargo fmt --all -- --check
      - run: cargo clippy --all-targets --all-features -- -D warnings
      - run: cargo test --all-features