Skip to content

Bump taiki-e/install-action from 2.62.49 to 2.85.1 #27

Bump taiki-e/install-action from 2.62.49 to 2.85.1

Bump taiki-e/install-action from 2.62.49 to 2.85.1 #27

Workflow file for this run

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@3d7d7cd5ac7f994c1892ae0c06165095b9139094 # v2.85.1
with:
tool: just@1.42.4
fallback: none
- name: Install cargo-nextest
uses: taiki-e/install-action@3d7d7cd5ac7f994c1892ae0c06165095b9139094 # v2.85.1
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