Skip to content

chore: Bump crate version to 0.8.2 #93

chore: Bump crate version to 0.8.2

chore: Bump crate version to 0.8.2 #93

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
# Automatically cancel previous workflow runs when a new commit is pushed.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust-channel: [stable, nightly]
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Check formatting
run: cargo fmt --check
- name: Clippy lints
run: cargo clippy -- --deny warnings
- name: Test
run: cargo test --verbose