Skip to content

Commit

Permalink
Run CI on changes to any file except for the readme
Browse files Browse the repository at this point in the history
Currently CI is only run on changes to specific files. While the list is currently complete, it is
prone to get outdated. Turn this whitelist into a blacklist that only excluded `README.md` from CI.
  • Loading branch information
LingMan committed Mar 15, 2023
1 parent dc9281e commit 8d3bdf6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ on:
pull_request:
branches:
- master
paths:
- "**.rs"
- "Cargo.toml"
- "Cargo.lock"
- ".github/workflows/*"
paths-ignore:
- "README.md"

jobs:
fmt:
Expand Down

0 comments on commit 8d3bdf6

Please sign in to comment.