Skip to content

Updating the project due to dependency changes: ever-block. #95

Updating the project due to dependency changes: ever-block.

Updating the project due to dependency changes: ever-block. #95

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Run cargo fmt check
run: cargo fmt --all -- --check
- name: Run cargo tests verbosed
run: cargo test --verbose
- name: Run cargo clippy
run: cargo clippy --all-targets