Skip to content

Remove a todo about a now stable feature #103

Remove a todo about a now stable feature

Remove a todo about a now stable feature #103

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Info
run: rustup show
- name: Build
run: cargo build --all-targets --release --locked --verbose
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --release --locked --verbose -- --deny warnings
- name: Test
run: cargo test --all-targets --release --locked --verbose