Fix join online video button after customer feature is removed (#232) #396
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: Setup flake8 annotations | |
uses: rbialon/flake8-annotations@v1 | |
- 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: Add problem matcher for black | |
run: echo "::add-matcher::.github/workflows/matchers/black.json" | |
- uses: psf/black@stable | |
with: | |
src: "./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" |