Skip to content

Update ed25519-dalek requirement from 1.0.1 to 2.1.1 #34

Update ed25519-dalek requirement from 1.0.1 to 2.1.1

Update ed25519-dalek requirement from 1.0.1 to 2.1.1 #34

Workflow file for this run

name: Rust-Nightly
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --tests
- name: Test
run: cargo test --verbose