We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d076e4 commit 645309aCopy full SHA for 645309a
1 file changed
.github/workflows/actions.yml
@@ -0,0 +1,20 @@
1
+name: 'Quality assurance pipeline'
2
+
3
+on: push
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-22.04
8
+ container: giomba/ceda-rom-disassembly:1
9
+ steps:
10
+ - name: Checkout repository
11
+ uses: actions/checkout@v3
12
+ - name: Build and test of CP/M components
13
+ run: |
14
+ make assemble
15
+ make tests
16
+ - name: Build and test of CP/M applications
17
18
+ cd applications
19
20
0 commit comments