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