diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6d365680..95cade9b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,11 @@ jobs: run: make build - name: Run linter ๐Ÿ‘€ + id: linting run: make lint + - name: Linting failed. Run make format to apply automatic fixes and show remaining problems. + if: ${{ failure() && steps.linting.conclusion == 'failure' }} + - name: Run tests ๐Ÿงช run: make test