Skip to content

v0.1.1: Tensor VM opcodes β€” TMAT, TATTRACT, TPACK, TUNPACK #8

v0.1.1: Tensor VM opcodes β€” TMAT, TATTRACT, TPACK, TUNPACK

v0.1.1: Tensor VM opcodes β€” TMAT, TATTRACT, TPACK, TUNPACK #8

Workflow file for this run

name: Rust CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
concurrency:
group: rust-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check & Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Cargo check
run: cargo check --all-targets --all-features
- name: Cargo test
run: cargo test --all-features
- name: Cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings