Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

update readme

update readme #44

Workflow file for this run

name: Continuous Integration Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Build on Rust stable
run: cargo build --verbose --color always
- name: Check formatting
run: rustup component add rustfmt && cargo fmt -- --check