nkeys 0.4.5

Rust implementation of the NATS nkeys library
Documentation
name: Build

on:
  push:
    branches:
      - main
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ${{ matrix.config.os }}
    strategy:
      fail-fast: false
      matrix:
        config:
          - { os: "ubuntu-latest" }
          - { os: "macos-latest" }
          - { os: "windows-latest" }

    steps:
      - uses: actions/checkout@v4
      - name: Install latest Rust stable toolchain
        uses: dtolnay/rust-toolchain@v1
        with:
          toolchain: stable
          default: true
          components: clippy, rustfmt
      - name: Format check
        run: cargo fmt --all -- --check
      - name: Test
        run: cargo test --all-features