mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-24 10:55:10 -05:00
27 lines
417 B
YAML
27 lines
417 B
YAML
name: Check locale
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
paths:
|
|
- 'data/locale/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'data/locale/**'
|
|
|
|
jobs:
|
|
ubuntu64:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check locale files
|
|
run: |
|
|
python3 ./CI/checkLocale.py -p data/locale/
|