enqueue-email 0.1.0

Send a bookmark via email, enqueuing it with MSMTP queue
Documentation
name: linting

on:
  push:
    branches:
      - "*"
  pull_request:
    branches:
      - "*"

jobs:
  clippy:
    name: linting
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v2

      - name: toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: nightly
          override: true
          components: rustfmt, clippy

      - name: fmt
        uses: actions-rs/cargo@v1
        with:
          command: fmt
          args: "-- --check"

      - name: clippy
        uses: actions-rs/cargo@v1
        with:
          command: clippy
          args: -- -D warnings