Skip to content

feat: brand new blend #12

feat: brand new blend

feat: brand new blend #12

Workflow file for this run

name: blend CI
on:
push:
branches: [master]
paths: [blend/**]
pull_request:
paths: [blend/**]
jobs:
check:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: blend
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.92.0
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
workspaces: blend
- run: cargo fmt --check
- run: cargo clippy -- -D warnings
- run: cargo test