Skip to content

bump version

bump version #485

Workflow file for this run

name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Rust CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check code formatting
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check cargo clippy warnings
run: cargo clippy --workspace --all-targets --all-features -- -D warnings