Skip to content

feat!: fix Random & add UniqueRandom #547

feat!: fix Random & add UniqueRandom

feat!: fix Random & add UniqueRandom #547

Workflow file for this run

name: fmt check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main", "development", "@*/*" ]
paths:
- 'src/**'
- '.github/workflows/fmt-check.yaml'
workflow_dispatch:
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
fmt_check:
runs-on: ubuntu-latest
concurrency:
group: fmt-check-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- name: Update toolchain
run: rustup update
- name: Run fmt
run: cargo fmt -v --check