Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1name: "Check formatting" 2description: "Checks code formatting use cargo fmt" 3 4runs: 5 using: "composite" 6 steps: 7 - name: cargo fmt 8 shell: bash -euxo pipefail {0} 9 run: cargo fmt --all -- --check