diff options
Diffstat (limited to '.github/workflows/kernel-ahci-dev.yml')
| -rw-r--r-- | .github/workflows/kernel-ahci-dev.yml | 18 |
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 + |
