Skip to content

fix: Missing Deserialize for Stats #5

fix: Missing Deserialize for Stats

fix: Missing Deserialize for Stats #5

Workflow file for this run

name: build-test
on:
pull_request:
paths-ignore:
- "*.md"
push:
paths-ignore:
- "*.md"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all-targets
- name: Test
run: cargo test
- name: Format
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings