Skip to content

Update rand requirement from 0.9 to 0.10 #485

Update rand requirement from 0.9 to 0.10

Update rand requirement from 0.9 to 0.10 #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: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- name: Install minimal stable
uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v6
- name: Check code formatting
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test -- --nocapture
- name: Check cargo clippy warnings
run: cargo clippy --workspace --all-targets --all-features -- -D warnings