Skip to content

feat: agentic-coder — arni integration + panel improvements (#1) #3

feat: agentic-coder — arni integration + panel improvements (#1)

feat: agentic-coder — arni integration + panel improvements (#1) #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
# Oracle requires native OCI client libs not available on CI runners.
# All other adapters are included.
CI_FEATURES: postgres,mysql,sqlite,mongodb,mssql
jobs:
ci:
name: Check / Fmt / Clippy / Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo registry and build
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Install system dependencies (Iced/wgpu)
run: |
sudo apt-get update -qq
sudo apt-get install -y --no-install-recommends \
libssl-dev \
pkg-config \
libvulkan1 \
libxkbcommon-dev \
libwayland-dev \
libx11-dev \
libxi-dev \
libxrandr-dev
- name: cargo fmt --check
run: cargo fmt --all -- --check
- name: cargo check
run: cargo check --workspace --features $CI_FEATURES
- name: cargo clippy
run: cargo clippy --workspace --features $CI_FEATURES -- -D warnings
- name: cargo test
run: cargo test --workspace --features $CI_FEATURES