Allow import of layout_test into 3rd party crates #1804
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cargo fmt | |
on: | |
pull_request: | |
paths: | |
- "**/*.rs" | |
push: | |
branches: [master] | |
paths: | |
- "**/*.rs" | |
jobs: | |
format: | |
name: cargo fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Run fmt | |
run: cargo +nightly fmt --all -- --check --unstable-features |