ci: run style.fish

This allows checking formatting of fish script and Python files, in
addition to Rust files.

Closes #11923
This commit is contained in:
Daniel Rainer
2025-10-09 17:39:57 +02:00
committed by Johannes Altmanninger
parent ff308b36af
commit 4d52245617

View File

@@ -6,15 +6,19 @@ permissions:
contents: read
jobs:
rustfmt:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rust-toolchain@stable
with:
components: rustfmt
- name: cargo fmt
run: cargo fmt --check
- name: install dependencies
run: pip install ruff
- name: build fish
run: cargo build
- name: check format
run: PATH="target/debug:$PATH" build_tools/style.fish --all --check
clippy-stable:
runs-on: ubuntu-latest