Skip to content

Commit

Permalink
chore: suppress command echoing in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Dec 13, 2023
1 parent a5f484e commit d0ac26b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,6 @@ jobs:
issue-number: ${{ github.event.pull_request.number }}
body: |
schema-update output:
${{ steps.update-schema.outputs.UPDATE_OUTPUT }}
edit-mode: replace
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
MAKEFLAGS += --silent

.PHONY: all
all: fix

.PHONY: ci-check
ci-check:
# mypy -p plugin
echo "Linting: ruff..."
ruff check --diff --preview .
echo "Linting: black..."
black --diff --preview --check .

.PHONY: ci-fix
ci-fix:
echo "Fixing: ruff..."
ruff check --preview --fix .
# ruff format --preview .
echo "Fixing: black..."
black --preview .


Expand Down

0 comments on commit d0ac26b

Please sign in to comment.