[codex] handle request_user_input in app-server test client #60799
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: cargo-deny | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| # Cargo's libgit2 transport has been flaky when fetching git dependencies with | |
| # nested submodules. Prefer the system git CLI across every Cargo invocation. | |
| env: | |
| CARGO_NET_GIT_FETCH_WITH_CLI: "true" | |
| jobs: | |
| cargo-deny: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./codex-rs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | |
| persist-credentials: false | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0 | |
| - name: Run cargo-deny | |
| uses: EmbarkStudios/cargo-deny-action@82eb9f621fbc699dd0918f3ea06864c14cc84246 # v2 | |
| with: | |
| rust-version: 1.95.0 | |
| manifest-path: ./codex-rs/Cargo.toml |