Skip to content

Add README with usage instructions #7

Add README with usage instructions

Add README with usage instructions #7

Workflow file for this run

---
name: Rust
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Build
run: cargo build --all --release