docs(README.md): add initial README.md #28
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 | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v2 | |
| - name: Install QEMU | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install qemu-system-x86 | |
| - name: Set up Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: nightly-2025-06-13 | |
| profile: minimal | |
| default: true | |
| override: true | |
| - name: Install Rustup Components | |
| run: rustup component add rust-src llvm-tools-preview | |
| - name: Install bootimage | |
| run: cargo install bootimage | |
| - name: Install dependencies | |
| run: cargo build | |
| - name: Run tests | |
| run: cargo test |