Skip to content

chore: bump version to 0.10.0 #7

chore: bump version to 0.10.0

chore: bump version to 0.10.0 #7

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
tags:
- "v*"
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
# Fast checks that don't require compilation (no ORT download needed)
lint:
name: Format & Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all --check
- name: Install cargo-audit
uses: taiki-e/install-action@v2
with:
tool: cargo-audit
- name: Security audit (Cargo.lock)
run: cargo audit
- name: Install cargo-deny
uses: taiki-e/install-action@v2
with:
tool: cargo-deny
- name: Supply chain check
run: cargo deny check