pretix Community Edition moves to AGPLv3-based license (#2023)

This commit is contained in:
Raphael Michel
2021-04-12 10:33:47 +02:00
committed by GitHub
parent ce834d7028
commit a93287207b
544 changed files with 15565 additions and 313 deletions

View File

@@ -53,3 +53,20 @@ jobs:
- name: Run flake8
run: flake8 .
working-directory: ./src
licenseheader:
name: licenseheaders
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: pip3 install licenseheaders
- name: Run licenseheaders
run: licenseheaders -t ../.licenseheader -E .py -x "*/migrations/*.py"
working-directory: ./src
- name: Check for changes
run: git diff --exit-code
working-directory: ./src