Skip to content

Add comments, remove println #247

Add comments, remove println

Add comments, remove println #247

Workflow file for this run

name: Rust Build
on:
push: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable # You can specify a version like '1.60.0' if needed
override: true
- name: Build
run: cargo build --verbose