Skip to content

Commit

Permalink
Merge pull request #61 from HenestrosaDev/dev
Browse files Browse the repository at this point in the history
Run Code Quality action only if changes were made in `src/**` or `test/**`
  • Loading branch information
HenestrosaDev authored Sep 4, 2024
2 parents 1837c47 + 1b670d5 commit 6401f3d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ name: Code Quality
on:
pull_request:
branches:
- "*"
- "**"
paths:
- "src/**"
- "tests/**"
push:
branches:
- main
paths:
- "src/**"
- "tests/**"

jobs:
build:
Expand Down

0 comments on commit 6401f3d

Please sign in to comment.