fix(dell): escape XML PCDATA in UEFI password import buffer #108
Workflow file for this run
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 | |
| - name: Build, Lint, and Test | |
| run: | | |
| cargo build | |
| cargo clippy | |
| cargo test |