Skip to content

Update dependencies tags #45

Update dependencies tags

Update dependencies tags #45

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