diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2024-11-07 18:26:06 +0100 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2024-11-07 18:32:06 +0100 |
| commit | 843ef1b1f07820d26cbda2fc548f16f6a7a0aa58 (patch) | |
| tree | f540ba04e96924cc8134e7d87122fda304b6e4e3 | |
| parent | 9ebe68d8c375eaf41c9901e8921e555f5b389539 (diff) | |
| download | rust-843ef1b1f07820d26cbda2fc548f16f6a7a0aa58.tar.gz rust-843ef1b1f07820d26cbda2fc548f16f6a7a0aa58.zip | |
Remove path filter
It would cause issues with the required jobs, and it is probably useless anyway, the vast majority of PRs seem to change Rust source files.
| -rw-r--r-- | .github/workflows/clippy_dev.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/clippy_pr.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/remark.yml | 2 |
3 files changed, 0 insertions, 14 deletions
diff --git a/.github/workflows/clippy_dev.yml b/.github/workflows/clippy_dev.yml index cefeb4fc5f9..bcb3193ad67 100644 --- a/.github/workflows/clippy_dev.yml +++ b/.github/workflows/clippy_dev.yml @@ -3,12 +3,6 @@ name: Clippy Dev Test on: merge_group: pull_request: - # Only run on paths, that get checked by the clippy_dev tool - paths: - - 'CHANGELOG.md' - - 'README.md' - - '**.stderr' - - '**.rs' env: RUST_BACKTRACE: 1 diff --git a/.github/workflows/clippy_pr.yml b/.github/workflows/clippy_pr.yml index 8748741ba20..2e5b5bd41df 100644 --- a/.github/workflows/clippy_pr.yml +++ b/.github/workflows/clippy_pr.yml @@ -2,12 +2,6 @@ name: Clippy Test on: pull_request: - # Don't run Clippy tests, when only text files were modified - paths-ignore: - - 'COPYRIGHT' - - 'LICENSE-*' - - '**.md' - - '**.txt' env: RUST_BACKTRACE: 1 diff --git a/.github/workflows/remark.yml b/.github/workflows/remark.yml index 1c1a9e82454..0d402fe7064 100644 --- a/.github/workflows/remark.yml +++ b/.github/workflows/remark.yml @@ -3,8 +3,6 @@ name: Remark on: merge_group: pull_request: - paths: - - '**.md' jobs: remark: |
