feat: accept Redfish interface id on machine_setup via BootInterfaceRef #164
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
| 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 |