codex-asr 0.1.1

Unofficial Codex Desktop ASR client that reuses local ChatGPT auth for one-shot transcription
Documentation
name: CI

on:
  pull_request:
  push:
    branches:
      - main

permissions:
  contents: read

jobs:
  rust:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy
      - uses: Swatinem/rust-cache@v2
      - run: cargo fmt --check
      - run: cargo test
      - run: cargo check --no-default-features --lib
      - run: cargo check --no-default-features --bin codex-asr
      - run: cargo clippy --all-targets --all-features -- -D warnings
      - run: cargo package --allow-dirty