Skip to content

Initial commit

Initial commit #1

Workflow file for this run

---
name: Rust Build and MSI Release
on:
push:
branches:
- main
jobs:
build:
name: Build with Cargo
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Build with Cargo
run: cargo build --verbose