Skip to content

Release v0.1.6: embed default recipes and CLI/scan fixes #8

Release v0.1.6: embed default recipes and CLI/scan fixes

Release v0.1.6: embed default recipes and CLI/scan fixes #8

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-test:
name: build-test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [stable]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test --verbose