add REUSE CI checks for Drone, Gitlab, and Travis

This commit is contained in:
2019-07-04 14:17:37 +02:00
parent 574ac3b387
commit 037e156586
3 changed files with 26 additions and 0 deletions

8
.drone.yml Normal file
View File

@@ -0,0 +1,8 @@
# SPDX-Copyright: 2019 Free Software Foundation Europe e.V.
# SPDX-License-Identifier: CC0-1.0
pipeline:
reuse:
image: fsfe/reuse:0.4.0a1
commands:
- reuse lint

7
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,7 @@
# SPDX-Copyright: 2019 Free Software Foundation Europe e.V.
# SPDX-License-Identifier: CC0-1.0
reuse:
image: fsfe/reuse:0.4.0a1
script:
- reuse lint

11
.travis.yml Normal file
View File

@@ -0,0 +1,11 @@
# SPDX-Copyright: 2019 Free Software Foundation Europe e.V.
# SPDX-License-Identifier: CC0-1.0
language: minimal
services:
- docker
before_install:
- docker pull fsfe/reuse:0.4.0a1
- docker run --name reuse -v ${TRAVIS_BUILD_DIR}:/repo fsfe/reuse:0.4.0a1 /bin/sh -c "cd /repo; reuse lint"