Skip to content

initial implementation #15

initial implementation

initial implementation #15

Workflow file for this run

name: static-check
on:
push:
branches:
- main
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- name: Check formatting
run: cargo fmt --check
- name: Lint
run: cargo clippy
- name: Run tests
run: cargo test --locked --frozen --all-features