qemu-system-boot/.gitlab-ci.yml

20 lines
305 B
YAML
Raw Normal View History

2022-05-11 08:49:05 +02:00
# SPDX-FileCopyrightText: 2022 Tobias Schmidl
#
# SPDX-License-Identifier: CC0-1.0
---
test:shellcheck:
stage: test
image: koalaman/shellcheck-alpine
script:
shellcheck ./qemu-system-*-boot
2022-05-13 12:18:53 +02:00
---
test:reuse:
image:
name: fsfe/reuse:latest
entrypoint: [""]
script:
reuse lint
2022-05-11 08:49:05 +02:00
...