Skip to content

Commit

Permalink
run commands in verbose mode
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Nov 15, 2023
1 parent 18add2e commit bcf8b8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
run: poetry install

- name: run unit tests
run: makim tests.unit
run: makim tests.unit --verbose

- name: CLI tests
run: makim tests.smoke
run: makim tests.smoke --verbose

linter:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -78,6 +78,4 @@ jobs:
run: poetry install

- name: Run style checks
run: |
pre-commit install
pre-commit run --all
run: makim tests.linter
4 changes: 3 additions & 1 deletion .makim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ groups:
targets:
linter:
help: Run lint checks
run: pre-commit run --all-files --verbose
run: |
pre-commit install
pre-commit run --all-files --verbose
unit:
help: Run tests
Expand Down

0 comments on commit bcf8b8c

Please sign in to comment.