quatrain 0.6.0

Not intended to be a static site generator
Documentation
name: Build

on:
  push:
    paths-ignore:
      - 'README.md'
      - 'LICENSE'
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/cargo@v1.0.1
        with:
          command: test
          args: --all-features
          toolchain: stable
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/cargo@v1.0.1
        with:
          command: build
          args: --all-features
          toolchain: stable