Create pr-test.yml

This commit is contained in:
2026-05-10 20:53:37 +08:00
committed by GitHub
Unverified
parent 99175b38c2
commit 21b2d51783
+18
View File
@@ -0,0 +1,18 @@
name: PR Test
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install deps
run: |
sudo apt update
sudo apt install build-essential qemu-system-x86 make ovmf -y
- name: Build OS
run: make all -j$(nproc)