Skip to content

Updated ecdh code to fix error #156

Updated ecdh code to fix error

Updated ecdh code to fix error #156

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout Submodules
run: git submodule update --init --recursive
- name: Install Rust stable
run: |
rustup toolchain update --no-self-update stable
rustup default stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose