Skip to content

per-patch: added NVMe-oF RDMA workflow from HPE #186

per-patch: added NVMe-oF RDMA workflow from HPE

per-patch: added NVMe-oF RDMA workflow from HPE #186

Workflow file for this run

---
# Using the pre-commit framework (https://pre-commit.com/) to enforce formatting
# for TOML, YAML, and Python files, as well as to lint Python scripts.
#
# The hooks are configured in .pre-commit-config.yaml. While integration with
# the Git repository is possible, it is **not** required; pre-commit is simply
# used as a convenient way to run these checks.
name: SPDK-CI selftest
on:
push:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/[email protected]
- name: Format
run: |
pipx run --python python3 pre-commit run --all
- name: Print formatting changes
if: ${{ failure() }}
run: |
git --no-pager diff
exit 1