diff options
author | Marvin Borner | 2020-03-31 21:45:12 +0200 |
---|---|---|
committer | Marvin Borner | 2020-03-31 21:45:12 +0200 |
commit | 87bda01111fb13e64e076f0761566ec419c1f753 (patch) | |
tree | 36f865677408c90bd37e07f1ab2e34af957c889a | |
parent | f692971daf8c64b4c97ff2111881ad80f46d5b37 (diff) |
OMG, I'm dumb...
Well, I've messed up the workflow syntax sooo - here we go again!
-rw-r--r-- | .github/workflows/build.yml | 8 | ||||
-rw-r--r-- | src/kernel/kernel.c | 3 |
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 |