-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (37 loc) · 1.08 KB
/
l10n.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
# This is a basic workflow to help you get started with Actions
name: L10n Checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
check-l10n-all:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner.
with:
fetch-depth: 0 # need full history
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: check for outdated localizations
run: |
python tests/check-l10n-updates.py
check-l10n-de:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner.
with:
fetch-depth: 0 # need full history
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: check for outdated localizations
run: |
python tests/check-l10n-updates.py de