Skip to content

Keep rustfmt happy

Keep rustfmt happy #23

Workflow file for this run

name: build
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-targets --verbose
- name: Run tests
run: cargo test --verbose