18 lines
286 B
YAML
18 lines
286 B
YAML
|
when:
|
||
|
- event: push
|
||
|
branch: master
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: debian
|
||
|
commands:
|
||
|
- apt update
|
||
|
- apt install gcc -y
|
||
|
- apt install make -y
|
||
|
- make -j$(nproc) test/test.elf
|
||
|
|
||
|
- name: run-tests
|
||
|
image: debian
|
||
|
commands:
|
||
|
- ./test/test.elf
|