mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
a161a7d0c9
This PR formats the YAML files in the repo with Prettier. Release Notes: - N/A
16 lines
380 B
YAML
16 lines
380 B
YAML
name: "Check formatting"
|
|
description: "Checks code formatting use cargo fmt"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: cargo fmt
|
|
shell: bash -euxo pipefail {0}
|
|
run: cargo fmt --all -- --check
|
|
|
|
- name: Find modified migrations
|
|
shell: bash -euxo pipefail {0}
|
|
run: |
|
|
export SQUAWK_GITHUB_TOKEN=${{ github.token }}
|
|
. ./script/squawk
|