Skip to content

Bump version to 0.9.0 in Cargo.toml and README #51

Bump version to 0.9.0 in Cargo.toml and README

Bump version to 0.9.0 in Cargo.toml and README #51

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install Rust toolchain
run: rustup toolchain install stable --profile minimal -c rustfmt,clippy
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets -- -D clippy::all
- name: Test
run: cargo test --all-targets