Skip to content

Commit 645309a

Browse files
committed
Added QA pipeline
1 parent 1d076e4 commit 645309a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/actions.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
18+
cd applications
19+
make assemble
20+
make tests

0 commit comments

Comments
 (0)