aethellib 0.10.1

Composable text generation primitives over target-specific TOML corpora with provenance tracking.
Documentation
name: Rust CI

on:
  pull_request:
  push:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Build
      run: cargo build --verbose
      
    - name: Check formatting
      run: cargo fmt --all -- --check

    - name: Clippy
      run: cargo clippy --all-targets -- -D warnings

    - name: Test
      run: cargo test

    - name: Test examples
      run: cargo test --examples