Skip to content

update all dependencies to the latest version + various small fixes #74

update all dependencies to the latest version + various small fixes

update all dependencies to the latest version + various small fixes #74

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
ovveride: true
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- name: Run Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --verbose
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
override: true
- name: Run Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --verbose -- --check