Skip to content

Updated quickstart guide #76

Updated quickstart guide

Updated quickstart guide #76

Workflow file for this run

name: Rust Build
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2024-09-17
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose