Skip to content

Commit

Permalink
Running linter actions on develop branch (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
gshtras authored Nov 13, 2024
1 parent 9a46e97 commit a9caec4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- "main"
- "develop"
paths:
- '.github/workflows/*.ya?ml'
- '.github/workflows/actionlint.*'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- develop
paths:
- "**/*.py"
- "**/*.md"
Expand All @@ -16,6 +17,7 @@ on:
pull_request:
branches:
- main
- develop
paths:
- "**/*.py"
- "**/*.md"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- develop
paths:
- '**/*.py'
- '.github/workflows/mypy.yaml'
Expand All @@ -14,6 +15,7 @@ on:
pull_request:
branches:
- main
- develop
# This workflow is only relevant when one of the following files changes.
# However, we have github configured to expect and require this workflow
# to run and pass before github with auto-merge a pull request. Until github
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- develop
paths:
- "**/*.py"
- pyproject.toml
Expand All @@ -15,6 +16,7 @@ on:
pull_request:
branches:
- main
- develop
# This workflow is only relevant when one of the following files changes.
# However, we have github configured to expect and require this workflow
# to run and pass before github with auto-merge a pull request. Until github
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ on:
push:
branches:
- "main"
- "develop"
paths:
- '**/*.sh'
- '.github/workflows/shellcheck.yml'
pull_request:
branches:
- "main"
- "develop"
paths:
- '**/*.sh'
- '.github/workflows/shellcheck.yml'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/yapf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ on:
push:
branches:
- main
- develop
paths:
- "**/*.py"
- .github/workflows/yapf.yml
pull_request:
branches:
- main
- develop
paths:
- "**/*.py"
- .github/workflows/yapf.yml
Expand Down

0 comments on commit a9caec4

Please sign in to comment.