Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Fix

Fix #591

Workflow file for this run

name: Makefile CI

Check failure on line 1 in .github/workflows/makefile.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/makefile.yml

Invalid workflow file

you may only define one of `paths` and `paths-ignore` for a single event
on:
push: #Only run if it changes code.
paths:
- "kernel/**"
- "apps/**"
- "Makefile"
- "linker.ld"
- "user/**"
paths-ignore:
- "user/base-files/**"
branches: [ "main" ]
pull_request: #Always run on pull-requests.
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Make the OS
run: mkdir bin && make img
- name: Run additional tests..
run: cd docs/tests/ && chmod +x size.sh && ./size.sh