Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Update x25519-dalek requirement from 1.1 to 2.0 #151

Update x25519-dalek requirement from 1.1 to 2.0

Update x25519-dalek requirement from 1.1 to 2.0 #151

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format
run: cargo fmt && git diff --exit-code
test:
strategy:
matrix:
platform: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Test
run: cargo test