Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
push:
branches: [ main ]
pull_request:
branches: [ main, develop-* ]
branches: [ main, feature/* ]
workflow_dispatch:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:
branches: [ main ]
pull_request:
branches: [ main, develop-* ]
branches: [ main, feature/* ]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -41,10 +41,10 @@ jobs:
run: poetry install --no-interaction

- name: Run black (code formatting check)
run: poetry run black --check src/ tests/
run: poetry run black --check src/

- name: Run flake8 (linting)
run: poetry run flake8 src/ tests/
run: poetry run flake8 src/

- name: Run mypy (type checking)
run: poetry run mypy src/
Loading