pbcli 2.9.0

pbcli is a command line client which allows to upload and download pastes from privatebin directly from the command line.
Documentation
name: CI:clippy+rustfmt

on:
  pull_request:
  push:
    branches:
      - master

# Make sure CI fails on all warnings, including Clippy lints
env:
  RUSTFLAGS: "-Dwarnings"

jobs:
  linting:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

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

      - name: Run rust clippy
        run: |
          cargo clippy --all-targets --all-features

      - name: Run rust fmt
        run: |
          cargo fmt --check