Skip to content

Bump version

Bump version #155

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rust
run: rustup toolchain install stable --profile minimal --component clippy rustfmt --no-self-update
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo check
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features
- run: cargo test --all-features