Skip to content

chore(blend): release 0.2.1 (#8) #28

chore(blend): release 0.2.1 (#8)

chore(blend): release 0.2.1 (#8) #28

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