mirror of https://github.com/Icinga/L10n.git
Add locale validation workflow
This commit is contained in:
parent
426fcaf7aa
commit
b9b4280a9f
|
@ -0,0 +1,24 @@
|
|||
name: Locale Validation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
name: Locale Validation
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code base
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup dependencies
|
||||
run: sudo apt-get -y install gettext
|
||||
|
||||
- name: Validate locale files
|
||||
run: cd ./locale/ && ../bin/validate
|
Loading…
Reference in New Issue