Skip to content

Proper readme.

Proper readme. #68

Workflow file for this run

on:
push:
branches:
- '*'
jobs:
verify:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo fmt --check
- run: cargo clippy
- run: cargo test