Skip to content

Bump library version to v0.2.0 #39

Bump library version to v0.2.0

Bump library version to v0.2.0 #39

Workflow file for this run

on:
push:
pull_request:
name: Lint
permissions:
contents: read
checks: write
jobs:
clippy_check:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Run cargo fmt
run: cargo fmt --all --check --verbose
- uses: clechasseur/rs-clippy-check@v2
with:
args: --all-features -- -D warnings