Skip to content

Upgrade rand to 0.9 and adjust implementation accordingly #40

Upgrade rand to 0.9 and adjust implementation accordingly

Upgrade rand to 0.9 and adjust implementation accordingly #40

Workflow file for this run

on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- --deny warnings
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features