Skip to content

Initial import

Initial import #2

Workflow file for this run

name: Build Rust Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build the Rust code
run: cargo build --verbose