Skip to content

We have now the CI ensure all doc strings remain formatted #1

We have now the CI ensure all doc strings remain formatted

We have now the CI ensure all doc strings remain formatted #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust nightly
run: rustup toolchain install nightly
- name: Run rustfmt (nightly)
run: cargo +nightly fmt --all -- --config format_code_in_doc_comments=true