Nvme collector #84
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # workflow to validate code formatting using pre-commit hooks | |
| name: Code Quality Check | |
| permissions: | |
| contents: read | |
| on: [pull_request] | |
| jobs: | |
| pre-commit: | |
| runs-on: [ self-hosted ] | |
| container: python:3.10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: pre-commit/[email protected] | |
| - name: Print message on failure | |
| if: failure() | |
| run: | | |
| echo "### :x: Pre-commit hooks failed. Please check logs for changes needed" >> $GITHUB_STEP_SUMMARY |