Skip to content

Float Pane

Float Pane #2893

Workflow file for this run

name: fmt
on:
pull_request:
branches:
- main
paths:
- "**/*.rs"
- ".github/workflows/fmt.yml"
push:
branches:
- main
paths:
- "**/*.rs"
- ".github/workflows/fmt.yml"
jobs:
check-code-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: "Install Rust"
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Build
run: |
source $HOME/.cargo/env
cargo +nightly fmt --all -- --check