Skip to content

Commit

Permalink
make pytest and lint workflows trigger on dev as well as main
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisAta committed Aug 28, 2024
1 parent 3d467db commit d12b30c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Run linter

on:
pull_request:
branches: [main]
branches: [main, dev]

jobs:
flake8:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytest-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Run pytest

on:
push:
branches: [main]
branches: [main, dev]
pull_request:
branches: [main]
branches: [main, dev]

jobs:
pytest:
Expand Down

0 comments on commit d12b30c

Please sign in to comment.