Skip to content

Added docs

Added docs #8

Workflow file for this run

name: Build on Windows
on:
push:
branches: [main]
jobs:
check:
name: Rust project
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
# `cargo check` command here will use installed `nightly`
# as it is set as an "override" for current directory
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check