Added further notes to SLF80037, fixed md5sum for relocated area whic… #6
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: 'Quality assurance pipeline' | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| container: giomba/ceda-rom-disassembly:1 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Build and test of CP/M components | |
| run: | | |
| make assemble | |
| make tests | |
| - name: Build and test of CP/M applications | |
| run: | | |
| cd applications | |
| make assemble | |
| make tests |