Bump docker/login-action from 1.10.0 to 3.5.0 #750
This file contains hidden or 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: | |
# TODO: Run Ruff | |
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 uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Run djhtml | |
run: uv run --only-group lint djhtml pretalx/ | |
working-directory: ./src | |
- name: Make sure we always use trimmed translation strings | |
run: "! git grep ' blocktranslate ' | grep -v trimmed" |