Skip to content

fix: back port allowing newer boot methods on iDRAC #355

fix: back port allowing newer boot methods on iDRAC

fix: back port allowing newer boot methods on iDRAC #355

Workflow file for this run

---
name: pre-commit
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches:
- main
merge_group:
types: [checks_requested]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
id: setup-python
with:
python-version: '3.11'
cache: 'pip'
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- run: pip install pre-commit
- name: "run pre-commit"
run: |
pre-commit run --all-files --show-diff-on-failure