apictl 1.0.0

Interact with APIs via the command-line.
Documentation
name: test
run-name: test ${{ github.ref }}

on:
  push:
    branches:
      - "main"
  pull_request:
    types: [opened, reopened]

jobs:
  test:
    name: check, clippy, test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: setup rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          components: clippy
      - name: cargo check
        run: cargo check
      - name: cargo clippy
        run: cargo clippy
      - name: cargo test
        run: cargo test