texcore 0.7.2

Create LaTeX documents using native Rust types.
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Install latest nightly
        uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          override: true
          components: rustc

      - name: Run cargo build
        uses: actions-rs/cargo@v1
        with:
          command: build -F testing

      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test -F testing