Skip to content

Bump ed25519-dalek from 1.0.0-pre.1 to 2.0.0 #8

Bump ed25519-dalek from 1.0.0-pre.1 to 2.0.0

Bump ed25519-dalek from 1.0.0-pre.1 to 2.0.0 #8

Workflow file for this run

on: [push, pull_request]
name: Continuous integration
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2019-07-15
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --verbose
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2019-07-15
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2019-07-15
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2019-07-15
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings