-
Notifications
You must be signed in to change notification settings - Fork 53
81 lines (78 loc) · 2.24 KB
/
style.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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"