Skip to content

Update README.md

Update README.md #81

Workflow file for this run

name: MacOS
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Run tests
run: cargo test --no-fail-fast
- name: Clippy
run: cargo clippy -- -Dwarnings