docs(raw): publish 0.1.1 benchmark results #25
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: codex-raw CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: codex-raw-ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_INCREMENTAL: "0" | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| check: | |
| name: Format, lint, test, and release-build | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 60 | |
| defaults: | |
| run: | |
| working-directory: codex-rs | |
| steps: | |
| - name: Check out source | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install Rust 1.95.0 | |
| uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0 | |
| with: | |
| components: clippy, rustfmt | |
| - name: Install just | |
| uses: taiki-e/install-action@44c6d64aa62cd779e873306675c7a58e86d6d532 # v2.62.49 | |
| with: | |
| tool: just@1.42.4 | |
| fallback: none | |
| - name: Install cargo-nextest | |
| uses: taiki-e/install-action@44c6d64aa62cd779e873306675c7a58e86d6d532 # v2.62.49 | |
| with: | |
| tool: nextest@0.9.103 | |
| fallback: none | |
| - name: Check Rust formatting | |
| run: cargo fmt --package codex-raw -- --config imports_granularity=Item --check | |
| - name: Run Clippy | |
| run: cargo clippy --locked --package codex-raw --tests --no-deps -- -D warnings | |
| - name: Run tests with cargo-nextest | |
| run: just test -p codex-raw | |
| - name: Build release binary | |
| run: cargo build --locked --release --package codex-raw |