Skip to content

Commit

Permalink
chore: ignore paths in test workflow
Browse files Browse the repository at this point in the history
Updates the test workflow to ignore the `.github`
and `docs` directories. This will prevent unnecessary
triggering when changes are made to these directories.
  • Loading branch information
danielnsilva committed Jul 13, 2024
1 parent 4aa9f35 commit e15816f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: Test
on:
push:
branches: [ "master" ]
paths-ignore:
- '.github/**'
- 'docs/**'
pull_request:
branches: [ "master" ]
paths-ignore:
- '.github/**'
- 'docs/**'

jobs:

Expand Down

0 comments on commit e15816f

Please sign in to comment.