13 lines
155 B
YAML
13 lines
155 B
YAML
image: debian
|
|
|
|
stages:
|
|
- test
|
|
|
|
before_script:
|
|
- apt update
|
|
- apt install -y make gcc pkg-config check
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- make test
|