This repository was archived by the owner on Jul 21, 2025. It is now read-only.
Fix #609
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Makefile CI | |
| on: | |
| push: #Only run if it changes code. | |
| paths: | |
| - "kernel/**" | |
| - "apps/**" | |
| - "Makefile" | |
| - "linker.ld" | |
| - "user/**" | |
| 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 | |