Skip to content

Configure Dell BIOS task IDs in machine setup (#54) #115

Configure Dell BIOS task IDs in machine setup (#54)

Configure Dell BIOS task IDs in machine setup (#54) #115

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
- name: Build, Lint, and Test
run: |
cargo build
cargo clippy
cargo test