summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/kernel-ahci-dev.yml
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-06-03 09:20:01 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-06-03 09:20:01 +0200
commitbebcbe04c2b47b3b4fcdc093b1736cc0295109fe (patch)
treee2509b7f9b59643b2a97773604aa383a2fd2e2f3 /.github/workflows/kernel-ahci-dev.yml
parent71dddecbce68f803820b780ccb8c744935256b49 (diff)
feat: Add CI for the `dev` branch.0.0.3
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows/kernel-ahci-dev.yml')
-rw-r--r--.github/workflows/kernel-ahci-dev.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/kernel-ahci-dev.yml b/.github/workflows/kernel-ahci-dev.yml
new file mode 100644
index 00000000..a1a47fa3
--- /dev/null
+++ b/.github/workflows/kernel-ahci-dev.yml
@@ -0,0 +1,18 @@
+name: NeKernel CI (AHCI)
+
+on:
+ push:
+ branches: [ "dev" ]
+ pull_request:
+ branches: [ "dev" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
+