-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
196 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
name: Code Style | ||
|
||
on: | ||
push: | ||
branches: [ main, master ] | ||
paths-ignore: | ||
- 'pretix_zugferd/locale/**' | ||
- 'pretix_zugferd/static/**' | ||
pull_request: | ||
branches: [ main, master ] | ||
paths-ignore: | ||
- 'pretix_zugferd/locale/**' | ||
- 'pretix_zugferd/static/**' | ||
|
||
jobs: | ||
isort: | ||
name: isort | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.11 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install pretix | ||
run: pip3 install pretix | ||
- name: Install Dependencies | ||
run: pip3 install isort -Ue . | ||
- name: Run isort | ||
run: isort -c . | ||
flake: | ||
name: flake8 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.11 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install pretix | ||
run: pip3 install pretix | ||
- name: Install Dependencies | ||
run: pip3 install flake8 -Ue . | ||
- name: Run flake8 | ||
run: flake8 . | ||
working-directory: . | ||
black: | ||
name: black | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.11 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install pretix | ||
run: pip3 install pretix | ||
- name: Install Dependencies | ||
run: pip3 install black -Ue . | ||
- name: Run black | ||
run: black --check . | ||
working-directory: . | ||
packaging: | ||
name: packaging | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.11 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install pretix | ||
run: pip3 install pretix | ||
- name: Install Dependencies | ||
run: pip3 install twine check-manifest -Ue . | ||
- name: Run check-manifest | ||
run: check-manifest . | ||
working-directory: . | ||
- name: Build package | ||
run: python setup.py sdist | ||
working-directory: . | ||
- name: Check package | ||
run: twine check dist/* | ||
working-directory: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: [ main, master ] | ||
paths-ignore: | ||
- 'pretix_zugferd/locale/**' | ||
pull_request: | ||
branches: [ main, master ] | ||
paths-ignore: | ||
- 'pretix_zugferd/locale/**' | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
name: Tests | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.11 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install system dependencies | ||
run: sudo apt update && sudo apt install gettext | ||
- name: Install pretix | ||
run: pip3 install pretix | ||
- name: Install Dependencies | ||
run: pip3 install pytest pytest-django -Ue . | ||
- name: Run checks | ||
run: py.test tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters