Skip to content

Format code and apply some clippy suggestions #31

Format code and apply some clippy suggestions

Format code and apply some clippy suggestions #31

Workflow file for this run

name: Build & Test
on:
pull_request:
push:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Lint
run: cargo fmt --check
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose