Skip to content

Commit

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

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

env:
CARGO_TERM_COLOR: always
Expand All @@ -23,4 +25,4 @@ jobs:
run: cargo fmt --check

- name: Run cargo-readme check
run: cargo readme > TMP_README.md && diff -b TMP_README.md README.md
run: cargo readme > TMP_README.md && diff -b TMP_README.md README.md

0 comments on commit 6ce81c5

Please sign in to comment.