Skip to content

chore: bump version to 0.3.3 #92

chore: bump version to 0.3.3

chore: bump version to 0.3.3 #92

Workflow file for this run

name: CI # Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --all --check
- name: Clippy check
run: cargo clippy --all-targets --all-features --workspace -- -D warnings
- name: Check documentation
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --no-deps --document-private-items --all-features --workspace
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain (MSRV)
uses: dtolnay/rust-toolchain@stable
with:
# NOTE: Keep in sync with rust-version in Cargo.toml
toolchain: "1.78"
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Check MSRV
run: cargo check --all-targets --all-features --workspace
test:
needs: [ lint, msrv ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --all-features --workspace