Skip to content

feat: add secret and evaluation key serialization #30

feat: add secret and evaluation key serialization

feat: add secret and evaluation key serialization #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt, clippy
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-targets -- -D warnings
- name: cargo clippy (all features)
env:
RUSTFLAGS: -C target-cpu=native
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test --verbose