Skip to content

Commit

Permalink
exclude some directories from Lintcheck CI (rust-lang#14084)
Browse files Browse the repository at this point in the history
Currently, the CI pipeline triggers `Lintcheck` for all PRs. However,
this check takes significant amount of time and seems unnecessary for
some certain directories that are frequently updated.

r? flip1995

changelog: none
  • Loading branch information
flip1995 authored Jan 28, 2025
2 parents 80c2d09 + 75b39d0 commit 25509e7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/lintcheck.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Lintcheck

on: pull_request
on:
pull_request:
paths-ignore:
- 'book/**'
- 'util/**'
- 'tests/**'
- '*.md'

env:
RUST_BACKTRACE: 1
Expand Down

0 comments on commit 25509e7

Please sign in to comment.