Skip to content

chore: bump the patch version #489

chore: bump the patch version

chore: bump the patch version #489

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
run: rustup toolchain install stable --profile minimal --no-self-update
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --check --verbose
- run: cargo clippy --verbose
- run: cargo build --verbose
- run: cargo test --verbose