From 2873e6ee72ea3241f81413de55ccd5a400124abf Mon Sep 17 00:00:00 2001 From: konstin Date: Mon, 7 Aug 2023 13:22:49 +0200 Subject: [PATCH] Run all checks when the scripts changed The scripts depend on the rust code and may depend on each other (and it's easier not having to track all scripts manually in ci.yaml), so run all checks when they changed. --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71ccf1bcbeba14..01b252dab3ab2d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,7 +42,7 @@ jobs: - "!crates/ruff_formatter/**" - "!crates/ruff_dev/**" - "!crates/ruff_shrinking/**" - - scripts/check_ecosystem.py + - scripts/* formatter: - Cargo.toml @@ -56,6 +56,7 @@ jobs: - crates/ruff_text_size/** - crates/ruff_python_parser/** - crates/ruff_dev/** + - scripts/* cargo-fmt: name: "cargo fmt"