Fixes Issue#19 : Add option for rich text editor to forms #34
Workflow file for this run
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
name: Code Style | |
on: | |
push: | |
branches: [ development ] | |
paths-ignore: | |
- 'src/pretalx/locale/**' | |
- 'src/pretalx/static/**' | |
- 'doc/**' | |
pull_request: | |
branches: [ development ] | |
paths-ignore: | |
- 'src/pretalx/locale/**' | |
- 'src/pretalx/static/**' | |
- 'doc/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
isort: | |
name: isort | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".github/workflows/python-version.txt" | |
cache: "pip" | |
- name: Install Dependencies | |
run: python -m pip install -Ue ".[dev]" | |
- name: Run isort | |
run: isort -c . | |
working-directory: ./src | |
flake: | |
name: flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".github/workflows/python-version.txt" | |
cache: "pip" | |
- name: Install Dependencies | |
run: python -m pip install -Ue ".[dev]" | |
- name: Run flake8 | |
run: flake8 . | |
working-directory: ./src | |
black: | |
name: black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".github/workflows/python-version.txt" | |
cache: "pip" | |
- name: Install Dependencies | |
run: python -m pip install -Ue ".[dev]" | |
- name: Run black | |
run: black --check . | |
working-directory: ./src | |
html: | |
name: HTML checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".github/workflows/python-version.txt" | |
cache: "pip" | |
- name: Install Dependencies | |
run: python -m pip install -Ue ".[dev]" | |
- name: Run djhtml | |
run: 'djhtml pretalx/' | |
working-directory: ./src | |
- name: Make sure we always use trimmed translation strings | |
run: "! git grep ' blocktranslate ' | grep -v trimmed" |