Skip to content

feat: add diecut extract command (engine-only) #177

feat: add diecut extract command (engine-only)

feat: add diecut extract command (engine-only) #177

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- "src/**"
- "Cargo.toml"
- "Cargo.lock"
- "justfile"
- ".github/workflows/ci.yml"
pull_request:
branches: [main]
paths:
- "src/**"
- "Cargo.toml"
- "Cargo.lock"
- "justfile"
- ".github/workflows/ci.yml"
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
check:
name: Check, Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: extractions/setup-just@v2
- uses: Swatinem/rust-cache@v2
- name: Run checks
run: just check