Skip to content

Commit

Permalink
Fix workflow (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
saridormi committed Jan 16, 2024
1 parent 8ac6eb5 commit 62f54bf
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/commit_message_generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,18 @@ jobs:
with:
version: 1.4.2

- name: Go to CMG folder
run: |
cd commit_message_generation
- name: Install dependencies
run: |
poetry install --no-interaction
cd commit_message_generation && poetry install --no-interaction
- name: Lint with Black
run: |
poetry run black -l 120 . --check
cd commit_message_generation && poetry run black . --check
- name: Check import styling with isort
run: |
poetry run isort --profile black . --check
cd commit_message_generation && poetry run isort . --check
- name: Check types with mypy
run: |
poetry run mypy .
cd commit_message_generation && poetry run mypy .

0 comments on commit 62f54bf

Please sign in to comment.