Skip to content

Commit

Permalink
avoid triggering build on markdown file changes
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Jan 29, 2024
1 parent dded3d9 commit 05f19db
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: build
on:
push:
branches: [ main ]
paths-ignore:
- '**/*.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**/*.md'

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ name: codecov
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**/*.md'
jobs:
# Run code coverage using cargo-llvm-cov then upload to codecov.io
job_code_coverage:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: formatting
on:
push:
branches: [ main ]
paths-ignore:
- '**/*.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**/*.md'

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit 05f19db

Please sign in to comment.