aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml8
-rw-r--r--src/kernel/kernel.c3
2 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 45001da..b0e34ad 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,12 +1,12 @@
name: Project build
-on: push
-
-jobs:
- build:
+on:
+ push:
paths:
- 'src/**'
+jobs:
+ build:
runs-on: ubuntu-latest
steps:
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index 5eadbb1..e5cb666 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -67,5 +67,4 @@ void kernel_main(uint32_t initial_stack)
panic("This should NOT happen!");
// asm ("div %0" :: "r"(0)); // Exception testing x/0
-}
-
+} \ No newline at end of file