Skip to content

fix: address clippy warnings #78

fix: address clippy warnings

fix: address clippy warnings #78

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- staging
- trying
env:
RUSTFLAGS: -Dwarnings
jobs:
build_and_test:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
rust: [stable]
steps:
- uses: actions/checkout@master
- name: Install ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: check
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --all-targets
- name: tests
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
check_fmt_clippy_docs:
name: Checking fmt, clippy, and docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: clippy
run: cargo clippy --all-targets -- -D warnings
- name: fmt
run: cargo fmt --all -- --check
- name: docs
run: cargo doc --no-deps