Skip to content

Commit

Permalink
disable workflow for non related changes
Browse files Browse the repository at this point in the history
  • Loading branch information
john0isaac committed Feb 2, 2024
1 parent 84b3185 commit 4dbdef8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Run Python linter and formatter
on:
push:
branches:
- main
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'

pull_request:
branches:
- main
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@ name: Run Python E2E tests
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'

pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'

jobs:
test_package:
Expand Down

0 comments on commit 4dbdef8

Please sign in to comment.