Skip to content

Commit 63991be

Browse files
authored
Add reuse compliance checking
Add reuse compliance checking to PR actions.
1 parent ac37e04 commit 63991be

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pull-request.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312
strategy:
1413
matrix:
1514
python-version: [3.6]
16-
1715
steps:
1816
- uses: actions/checkout@v2
1917
- name: Set up Python ${{ matrix.python-version }}
@@ -27,3 +25,9 @@ jobs:
2725
- name: Run Tox
2826
run: |
2927
tox -e release
28+
reuse:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- uses: actions/checkout@v2
32+
- name: REUSE Compliance Check
33+
uses: fsfe/reuse-action@v1

0 commit comments

Comments
 (0)