Skip to content

Commit

Permalink
provide better dependencies for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
elephantum committed Aug 11, 2024
1 parent c2e469a commit 6b948d4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Build and publish docs

on:
push:
paths:
- ".github/workflows/docs.yaml"
- "docs/**"
- "pyproject.toml"

jobs:
# Build job
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: Run tests

on:
push:
paths-ignore:
- "docs/**"
- "**/*.md"
- "examples/**"
paths:
- ".github/workflows/pytest.yaml"
- "datapipe/**"
- "tests/**"
- "pyproject.toml"


jobs:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: Test examples

on:
push:
paths-ignore:
- "docs/**"
- "**/*.md"
- "tests/**"
paths:
- ".github/workflows/test_examples.yaml"
- "examples/**"
- "datapipe/**"
- "pyproject.toml"

jobs:
test-examples:
Expand Down

0 comments on commit 6b948d4

Please sign in to comment.