text_placeholder 0.5.1

A flexible text template engine
Documentation
name: continuous-integration
on: [push, pull_request]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose
    - name: Run tests with all features
      run: cargo test --all-features --verbose
    - name: Run tests with no default features (no_std)
      run: cargo test --no-default-features --verbose