Skip to content

pd-vm: jit unbox string/bytes on len/get/has #90

pd-vm: jit unbox string/bytes on len/get/has

pd-vm: jit unbox string/bytes on len/get/has #90

Workflow file for this run

name: CI (self-hosted)
on:
push:
pull_request:
jobs:
rust-ci:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --workspace --all-targets --all-features --locked -- -D warnings
- name: cargo check
run: cargo check --workspace --all-features --locked
- name: cargo test
run: cargo test --workspace --all-features --locked
- name: cargo test (release)
run: cargo test --workspace --all-features --locked --release