Skip to content

feat: implement HPE set_boot_override via UrlBootFile BIOS attribute #148

feat: implement HPE set_boot_override via UrlBootFile BIOS attribute

feat: implement HPE set_boot_override via UrlBootFile BIOS attribute #148

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "pull-request/[0-9]+"
jobs:
ci-job:
runs-on: linux-amd64-cpu4
container:
image: rust:1.90.0
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python dependencies
run: |
apt-get update
apt-get install -y python3-full python3-pip
- name: Install Clippy
run: rustup component add clippy rustfmt
- name: Build, Lint, and Test
run: |
cargo build
cargo fmt --check
cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
cargo test