Skip to content

feat: derive Clone for KeyPair and XKey (#50) #88

feat: derive Clone for KeyPair and XKey (#50)

feat: derive Clone for KeyPair and XKey (#50) #88

Workflow file for this run

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