
This PR moves the spelling check out of the `check_style` action, which we can leave for just checking formatting. We can't use the `crates-ci-typos` action as-is on the macOS runners due to the absence of `wget`. Release Notes: - N/A
9 lines
211 B
YAML
9 lines
211 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
|