copypasta 0.10.2

copypasta is a cross-platform library for getting and setting the contents of the OS-level clipboard.
Documentation
name: CI

on: [push, pull_request]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    strategy:
      matrix:
        os: [windows-latest, macos-latest]

    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v2
      - name: Stable
        run: cargo test
      - name: Clippy
        run: |
          rustup component add clippy
          cargo clippy --all-targets
      - name: Oldstable
        run: |
          rustup default 1.71.0
          cargo clean
          cargo test