-
Notifications
You must be signed in to change notification settings - Fork 18
64 lines (52 loc) · 1.49 KB
/
quality_checks.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
name: Quality Checks
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
translations:
name: Translations
runs-on: self-hosted
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Create virtualenv
run: virtualenv env
- name: Install pip dependencies
run: |
source env/bin/activate
pip install -e .[test]
- name: Extract messages
run: |
source env/bin/activate
python manage.py makemessages --locale=en --ignore=bluebottle/notifications/tests/ --settings=bluebottle.settings.testing
- name: Check missing translations
run: |
source env/bin/activate
python ./locale/check_translatoins.py --locales=nl > translation-message.txt
- name: Echo
run: echo translation-message.txt
- name: Post comment
uses: mshick/add-pr-comment@v2
if: always()
with:
message-path: translation-message.txt
refresh-message-position: true
lint:
name: Linting
runs-on: self-hosted
steps:
- name: Checkout repo
uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.8.17'
cache: pip
- name: Install pip dependencies
run: pip install -e .[test]
- name: Lint
run: flake8 .