Skip to content

Commit 14d5354

Browse files
committed
Chcek REUSE compliance in CI
1 parent 5017175 commit 14d5354

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,18 @@ jobs:
148148

149149
- name: Run test
150150
run: mix test --warnings-as-errors --trace --slowest 10
151+
152+
reuse:
153+
name: Check REUSE Compliance
154+
runs-on: ubuntu-22.04
155+
steps:
156+
- name: Checkout repository
157+
uses: actions/checkout@v4
158+
with:
159+
fetch-depth: 0 # Ensure full history
160+
- name: Install Python and REUSE tool
161+
run: |
162+
python --version
163+
pip install reuse
164+
- name: Run REUSE lint
165+
run: reuse lint

0 commit comments

Comments
 (0)