kagi-vault 0.1.6

Encrypted secrets and environment variable manager for teams — a secure, team-ready dotenv alternative with per-service isolation
name: CI

on:
  push:
  pull_request:

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - run: cargo fmt -- --check
      - run: cargo clippy --all-targets --all-features -- -D warnings
      - run: cargo test
      - run: cargo test --no-default-features
      - run: cargo check --all-targets --all-features
      - run: cargo check --no-default-features