diff options
| author | Fuwn <[email protected]> | 2026-04-27 04:41:03 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-04-27 04:41:03 +0000 |
| commit | 8bf0d3581e9fea484ad058231cbb69ade55e2b63 (patch) | |
| tree | 04c074bf6102a49cc5ee9e6f5d1c98f2a8475702 /.github | |
| parent | fix(rossweisse): Align Cargo.toml licence with README licence (diff) | |
| download | archived-windmark-8bf0d3581e9fea484ad058231cbb69ade55e2b63.tar.xz archived-windmark-8bf0d3581e9fea484ad058231cbb69ade55e2b63.zip | |
fix(ci): Use ** instead of * in workflow path filters
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/check.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index c1d1f7a..f21d758 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -4,10 +4,10 @@ on: workflow_dispatch: push: paths: - - "*" + - "**" pull_request: paths: - - "*" + - "**" env: CARGO_TERM_COLOR: always |