Skip to content

crates: generators: cpp: Add line break between properties #119

crates: generators: cpp: Add line break between properties

crates: generators: cpp: Add line break between properties #119

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo build artifacts
uses: Swatinem/rust-cache@v2
- name: Enforce formatting
run: cargo fmt --all -- --check
- name: Lint with Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --all --all-features
- name: CLI smoke tests
run: |
for flag in --emit-idl --emit-rust; do
echo "Running blueberry-cli $flag"
cargo run --bin blueberry-cli -- crates/parser/tests/fixtures/blueberry_full.idl $flag
done