Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/enforce-license-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ on:
branches: [master, main]

jobs:
check-copyleft-license-compliance:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Check for copyleft licenses
uses: getsentry/copyleft-license-checker@main
with:
fail-on-found: 'true'
allow-gpl-classpath: 'true'

enforce-license-compliance:
runs-on: ubuntu-latest
steps:
Expand Down
Loading