Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Rust
on:
push:
branches: [ main, dev/* ]
pull_request:
branches: [ main, dev/* ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- name: Run tests
run: cargo +nightly test --verbose