Skip to content

Update rand requirement from 0.8.5 to 0.9.0 (#14) #30

Update rand requirement from 0.8.5 to 0.9.0 (#14)

Update rand requirement from 0.8.5 to 0.9.0 (#14) #30

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jwlawson/actions-setup-cmake@v2.0.2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Pull submodules
run: git submodule update --init --recursive
- name: Build
run: cargo build
- name: Run test
run: cargo test
- name: Format check
run: cargo fmt --check