Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 937 Bytes

README.md

File metadata and controls

45 lines (27 loc) · 937 Bytes

Rust Tests

Tests with Rust language

Prerequisites

Optional for language support:

  • Install rust-analyzer
    • For example in VSCode, install the rust-analyzer extension or install with rustup rustup component add rust-analyzer

Alternatively, develop in browser

Open in Gitpod

Usage

Using Cargo

  # Go into relevant project directory
  cd <project>
  # Run project
  cargo run

Using Makefile

  • Can be used if make is installed on Linux, MacOS, or Windows with git bash and make installed
  # Install rust-analyzer
  make install

  # See available tasks to run like run, build
  make