lsp-document 0.6.0

Helpers to convert between LSP documents and Rust strings
Documentation
name: Build & Test

on: 
  pull_request:
  push:

jobs:
  check:
    name: Validate on ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
      - name: Setup rust toolchian
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true
          components: rustfmt, clippy
      
      - name: Run `check`
        uses: actions-rs/cargo@v1
        with:
          command: check
          args: --workspace

      - name: Run `clippy`
        uses: actions-rs/cargo@v1
        with:
          command: clippy
          args: --workspace
      
      - name: Run `test`
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --workspace