Skip to content

Commit

Permalink
Fix paths for workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
trumully committed Sep 10, 2024
1 parent 5eaed28 commit d607a10
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ on:
branches:
- main
paths:
- |
dynamo/**/*.py
tests/**/*.py
- dynamo/**/*.py
- tests/**/*.py
pull_request:
types: [opened, reopened, synchronize]
paths:
- |
dynamo/**/*.py
tests/**/*.py
- dynamo/**/*.py
- tests/**/*.py

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
18 changes: 8 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@ name: Test

on:
push:
branches:
branches:
- main
paths:
- |
dynamo/**/*.py
tests/**/*.py
paths:
- dynamo/**/*.py
- tests/**/*.py
pull_request:
types: [opened, reopened, synchronize]
paths:
- |
dynamo/**/*.py
tests/**/*.py
types: [opened, reopened, synchronize]
paths:
- dynamo/**/*.py
- tests/**/*.py

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit d607a10

Please sign in to comment.